Kendo UI Chart - Want tooltip to always show -
i need how kendo chart tool. trying plot line graph bookings on particular date. have booking on particular day , can see circular plot. if hover on can see tool tip contains summary of booking. want tooltip visible/open. @ moment happens on mouse over.
function createchart() { $("#chart").kendochart(data); var tooltip = $("#chart").kendotooltip({ width: 120, position: "top", visibe: true }).data("kendotooltip"); }
i using kendo first time , confused now. appreciated.
you can show tooltips or labels without having hover on them mouse, using setting visible of series labels true follows:
seriesdefaults: { type: "line", labels: { visible: true } }
you can check , see demo example here: http://demos.telerik.com/kendo-ui/line-charts/local-data-binding
Comments
Post a Comment