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

  1. markers visible
  2. 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

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -