Hi
I have a Kendo chart that I'm using plot bands on (sample code is shown below - 'varTotals' is a variable that has an integer value). I was wondering whether there was a way to show tooltips on those plot bands when my users hover over them:
valueAxis: {
labels: {
format: "{0:C0}"
},
majorGridLines: {
width: 1,
color: "#CCCCCC"
},
plotBands: [{
from: (95 * varTotals) / 100,
to: varTotals,
color: "green"
}]
,
min: 0,
max: varTotals
},
Thanks.
I have a Kendo chart that I'm using plot bands on (sample code is shown below - 'varTotals' is a variable that has an integer value). I was wondering whether there was a way to show tooltips on those plot bands when my users hover over them:
valueAxis: {
labels: {
format: "{0:C0}"
},
majorGridLines: {
width: 1,
color: "#CCCCCC"
},
plotBands: [{
from: (95 * varTotals) / 100,
to: varTotals,
color: "green"
}]
,
min: 0,
max: varTotals
},
Thanks.