Hi,
I have issue with tooltip using piechart.
what is wrong with this options when i use this array?
[
[
"One",
30.77,
"",
"292"
],
[
"Two",
17.18,
"",
"163"
],
[
"Three",
17.81,
"",
"169"
],
[
"Four",
15.38,
"",
"146"
],
[
"Five",
11.91,
"",
"113"
],
[
"Six",
6.95,
"",
"66"
]
]
here the options:
columnChartOptions_Kategori = {
height: 550,
width: 590,
bar: { groupWidth: "30%" },
chartArea: {
left: 25,
top: 80,
width: '600',
},
pieHole: 0.4,
legend: {
position: 'top',
maxLines: 5,
textStyle: { fontSize: 10 }
},
tooltip: { isHtml: true, textStyle: { fontSize: 12 }, trigger: 'both', ignoreBounds: true },
slices: {
0: { color: '#CCCCCC' } // Change the color of slices for obj.Total below 5% to grey
},
pieSliceText: 'value'
};