Kendo.Mvc.UI.Fluent.ChartMajorTicksBuilder
Defines the fluent interface for configuring ChartMajorTicksBuilder.
Methods
Skip(System.Int32)
Sets the line skip
Parameters
skip System.Int32
The line skip.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.CategoryAxis(axis => axis.MajorTicks(lines => lines.Skip(2)))
)
Step(System.Int32)
Sets the line step
Parameters
step System.Int32
The line step.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.CategoryAxis(axis => axis.MajorTicks(lines => lines.Step(2)))
.Render();
)