Hi there, for some reason I can't force bubble chart to show legend, at the same time I'm able to see category name in the tooltip, could you please explain why, thanks.
$("#Chart1").kendoChart({
title: {
text: "Chart"
},
legend: {
visible: true,
position: "bottom"
},
dataSource: @{@Html.Raw(id)}ChartDataSource1,
seriesDefaults: {
type: "bubble"
},
seriesColors: ["#004D5C", "#FF8700", "#38A660", "#E5D843", "#80BF34"],
series:
[{
type: "bubble",
categoryField: "Field1",
xField: "Field2",
yField: "Field3",
sizeField: "Size",
colorField: "Color",
maxSize: 35,
minSize: 3,
visibleInLegendField: "true",
tooltip: {
visible: true,
format: "{2} {3}"
}
}
]
,
xAxis: {
//max: 1000,
labels: {
format: "{0}"
}
},
yAxis: {
//min: 80,
labels: {
format: "{0}"
}
},
});