This is a migrated thread and some comments may be shown as answers.

Radial and Linear Gauge Drilldown

1 Answer 72 Views
Gauges
This is a migrated thread and some comments may be shown as answers.
Vinayak
Top achievements
Rank 2
Vinayak asked on 10 Nov 2014, 09:58 AM
Hi,

Like the Kendo (HTML/Javascript) charts have seriesClick event, does Kendo Gauges (both Radial and Linear) have any click events?

I want to have a drilldown option for gauges. See my codes below and help me please.


******************************
* My Linear Gauge code *
******************************

            $('.k-gauge').kendoLinearGauge({
                    pointer: { value: dataValue },
                    scale: { min: minValue, max: maxValue,  rangeSize: 15, vertical: true
                            labels: { color: 'white', template: _myFormat },
                            majorTicks: { color: 'white' },
                            minorTicks: { color: 'grey'},
                            ranges: _myRanges()
                    },
                    gaugeArea: { background : '#1E1E1E' }
            });

******************************
* My Radial Gauge code *
******************************

            $('.k-gauge').kendoRadialGauge({
                    pointer: { value: dataValue },
                    scale: { startAngle: angles.start, endAngle: angles.end,
                        min: minValue, max: maxValue, rangeSize: 15,
                        labels: { color: 'white', template: _myFormat },
                        majorTicks: { color: 'white' },
                        minorTicks: { color: 'grey'},
                        ranges: _myRanges()
                   },
                   gaugeArea: { background : '#1E1E1E' }
                });


1 Answer, 1 is accepted

Sort by
0
Dimiter Madjarov
Telerik team
answered on 12 Nov 2014, 01:46 PM
Hi Vinayak,


Click events are currently not supported for the Radial and Linear Gauges.
Please excuse us for any inconvenience caused.

Regards,
Dimiter Madjarov
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
Gauges
Asked by
Vinayak
Top achievements
Rank 2
Answers by
Dimiter Madjarov
Telerik team
Share this question
or