I am new to Kendo UI charts ( MVC ). Do Kendo charts provide any provision for auto scaling x axis in MVC for column chart ? like I have a large number of values which mess up the chart display.
I want to display dates on x-axis.
Thanks
Pratik
3 Answers, 1 is accepted
0
Hristo Germanov
Telerik team
answered on 26 Nov 2012, 02:45 PM
Hello Pratik,
Chart axis auto scaling is not supported, but with the SP1 of Kendo UI for MVC we will add autoBaseUnitSteps, baseUnitStep and maxDateGroups.
Whit this properties you can modify the chart default behavior. Until then you can skip some of chart's labels with skip and step:
.CategoryAxis(axis => axis
.Labels(labels => labels.Skip(2).Step(2))
)
Greetings,
Hristo Germanov
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!