Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kendo ui chart hide circle for data points

I'm not able to hide rounded circle for the line chart in Kendo ui. I do want to show tooltip value but want to hide circle.

below example is from demo site: http://demos.kendoui.com/dataviz/line-charts/index.html enter image description here

Even, I don't know what do they call it so that I can find in the document here: http://docs.kendoui.com/api/dataviz/chart

like image 330
user1298676 Avatar asked Nov 29 '22 07:11

user1298676


1 Answers

According to the docs, you can set series.markers.visible to false:

http://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/chart#configuration-series.markers.visible

Additionally you can change their size and shape.

like image 155
automagic Avatar answered Dec 04 '22 14:12

automagic