I'm building a Kendo bar chart that has two series that "mirror" each other. One series has negative values and the other positive values. My choices for formatting the labels seem to be limited (based on my review of the obvious options - I am not an html/javascript guru) to having them on one side or the other. I would really like to have them flow with the value of the bar and appear opposite (i.e. clear of the bar).
Here is my current chart
<div id="barchart"></div>
function setUpCharts()
{
$("#barchart").kendoChart({
title: {
text: "Bar Chart"
},
legend: {
visible: true,
position: "bottom"
},
seriesDefaults: {
type: "bar",
stack: true
},
series: [{
data: [0, 0, .69, .29, .85],
}, {
data: [-.80, -.56, 0, 0, 0],
}
],
categoryAxis: {
categories: ["Cat1", "Cat2", "Cat3", "Cat4", "Cat5"],
majorGridLines: { visible: false },
},
valueAxis: {
numeric: true,
line: { visible: false },
minorGridLines: { visible: true }
}
});
}
It's also at: http://jsfiddle.net/xamlfishet/3jNn5/1/
Anyone have any suggestions? Much appreciated!!!