I am trying to set some stacking for my Shield UI JavaScipt Chart. I use the following code, that doesn’t seem to work:
$(function () {
$("#chart").shieldChart({
primaryHeader: {
text: 'Shield UI Inversed Bar Chart Example',
align: 'center'
},
isInverted: true,
seriesSettings: {
dataSeries: [
{
seriesType: 'bar',
stackMode: "percent",
collectionAlias: 'Series A',
data: [12, 22, 25, 32, 33, 25]
},
{
seriesType: 'bar',
collectionAlias: 'Series B',
data: [22, 11, 22, 31, 32, 22]
},
{
seriesType: 'bar',
collectionAlias: 'Series C',
data: [20, 37, 11, 22, 25, 24]
}
]
});
});
I tried with stackMode: "normal", as well, but it didn’t solve the problem.
Here is your code with corrected syntax: