I have a lot of time steps in my timeslider. I do not like the way it is displayed. Is there a way to turn off just the tick marks?
<esri:TimeSlider x:Name="MyTimeSlider"
Loaded="MyTimeSlider_Loaded"
TimeMode="TimeInstant"
Height="20"
MinimumValue="1997/1/1"
MaximumValue="1998/6/30"
Value="1997/1/1" />
List<DateTime> DateTimeMonths = new List<DateTime>();
DateTime dtStart = new DateTime(1997, 1, 1, 0, 0, 0, DateTimeKind.Utc);
myDate.DisplayDate = dtStart;
myDate.Text = dtStart.ToString("M/d/yyyy");
DateTime dtStep = dtStart;
DateTime dtEnd = new DateTime(1998, 6, 30, 18, 0, 0, DateTimeKind.Utc);
while (dtStep <= dtEnd)
{
DateTimeMonths.Add(dtStep);
dtStep = dtStep.AddHours(6);
}
MyTimeSlider.Intervals = DateTimeMonths;
[ATTACH]4177[/ATTACH]