You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created a pie chart and attempted to override getTooltipText() on the series, but the event handler is not given an eventArgs object, so I cannot access properties such as seriesValue.
varring=svpChart.addSeries("index",dimple.plot.pie);ring.addOrderRule("index");ring.innerRadius="50%";ring.getTooltipText=function(e){// This is undefined.console.log(e.seriesValue);return[e.seriesValue];};
I tried the workaround mentioned in #15, but I could not find the series value I assigned.
The text was updated successfully, but these errors were encountered:
Greetings,
I created a pie chart and attempted to override
getTooltipText()
on the series, but the event handler is not given aneventArgs
object, so I cannot access properties such asseriesValue
.I tried the workaround mentioned in #15, but I could not find the series value I assigned.
The text was updated successfully, but these errors were encountered: