This question is locked. New answers and comments are not allowed.
Hello Telerik,
I'm in the process of migrating from the old Chart to ChartView. We have a requirement to set every X axis tick label. The old chart allows you to do that by iterating through the TickPoint collection of the X axis and set labels as follows:
foreach (var tc in ChartArea.AxisX.TickPoints)
{
string lable = GetLabel( tc.Value);
tc.Label = label;
}
Can I do the same with ChartView DateTimeContinuousAxis? If so, how? I don't see a class called TickPoint in ChartView reference material.
Thanks,
Cameron