I want to show the current value of chart into the pointer tool-tip, If there any way to add tool-tip please suggest, please check gauge screenshot
相关问题
- Foreign key column sorting
- Kendo UI bind drop down value from PopupEditor
- How to change color of row based on particular col
- Kendo UI for MVC Grid How do I hide the ID column
- Kendo toolbar AddNew button doesn't work when
相关文章
- Kendo Ui Dropdownlist Set Visible via Javascript
- How to change view date dynamically (which is filt
- Kendo DropDownList Shows DataValueField Prior to D
- Kendo UI Datasource - Filter on releated data
- Kendo UI Grid Refesh on Dropdown Selection
- How to bind kendo mvc ui dropdownlist dynamically
- KendoUI integration into Durandal JS
- How to make a Pie Chart Aggregate the Data Source?
There is no built in method for this afaik. So you can use the kndoUI tooltip object like this:
In the gauge config, I assign a unique CSS color to the pointer so I can easily query for the SVG element
Then setup the tooltip widget so that onShow, the content is set to the current value of the gauge. The filter attribute points at any dom object with our unique fill color.
Here is a dojo DEMO