I got a question regarding of the pie chart.
I use
toolTipContent:”{legendText} {y}”,
dataPoints: [
{ y: 100 legendText:”Excellent”, indexLabel: “Excellent” },{ y: 0, legendText:”Good”, indexLabel: “Good” },{ y: 0, legendText:”Mid”, indexLabel: “Mid” },{ y: 0, legendText:”Bad”, indexLabel: “Bad” }
]
The toolTipContent does not show up.
But,
toolTipContent:”{legendText} {y}”,
dataPoints: [
{ y: 50 legendText:”Excellent”, indexLabel: “Excellent” },{ y: 50, legendText:”Good”, indexLabel: “Good” },{ y: 0, legendText:”Mid”, indexLabel: “Mid” },{ y: 0, legendText:”Bad”, indexLabel: “Bad” }
]
It is working.
Why the first is not showing up?
Thanks,
Ricky