This question is locked. New answers and comments are not allowed.
Hi all,
I'm using the Telerik Extension for MVC, Chart -> Line. Everything went well, but I fount a problem. There are too many sample points in my data set (and I do need all these data) and the the axis value in X cannot be seen clearly. I just want to not to show them or is there any other better choice. Can anyone tell me how to do that?
Please see the screen shot in the attachment.
Thanks !
I'm using the Telerik Extension for MVC, Chart -> Line. Everything went well, but I fount a problem. There are too many sample points in my data set (and I do need all these data) and the the axis value in X cannot be seen clearly. I just want to not to show them or is there any other better choice. Can anyone tell me how to do that?
@{ Html.Telerik().Chart(Model.ProcessorPerfData) .Name("processorView") .Title("Processor Utilization") .Legend(legend => legend.Position(ChartLegendPosition.Bottom)) .CategoryAxis(axis => axis.Categories(m => m.DateTimeString)) .Series(s => s.Line(m => m.ProcessorTime).Name("%Processor Time").Width(1).Markers(false)) .HtmlAttributes(new { style = "width: 700px; height: 280px;" }) .Render();}Please see the screen shot in the attachment.
Thanks !