Kendo Categorical chart to display only points with non numeric x-axis -
i using kendo ui dataviz charts display data has text(symbols) on x-axis , numerical value on y-axis. have serverside datasource provides data. how can achieve this?
i tried use scatter charts xy charts , need numerical values on both x , y axis. can display data linecharts categorical line connecting markers meaningless in case , don't need displayed.
here's example of data var data = [{id:"1", number:"1.23", label:"a"},{id:"2", number:"4.11", label:"b"}]
you use simple line chart , set
- markers visible
series.opacity
0
series: [{ field: "value", type: "line", opacity: 0, markers: { size: 5, visible: true, } }]
http://docs.kendoui.com/api/dataviz/chart#configuration-series.opacity
Comments
Post a Comment