Reputation: 360
I have been using a KendoUI chart as discussed in this URL Drilldown Chart Feasibility in KendoUI
I am wondering if Kendo supports providing an additional vertical line at a defined milestone. Or should we mix and match multiple graph types to accomplish this feature?
Upvotes: 0
Views: 19
Reputation: 3293
Inside the categoryAxis or valueAxis You can set minorGridLines or majorGridLines
categoryAxis: [{
minorGridLines: {
width: 3,
color: "green"
},
Or majorGridLines
majorGridLines: {
visible: true // or width color and line type
},
For more documentation please check https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/chart/configuration/categoryaxis.minorgridlines
Upvotes: 1