Thank you for reporting this bug. We will make it our priority to review this report.
-
Sencha User
Answered: Stacked bar charts in sencha
Is it possible to create stacked column charts as given in the image below in sencha touch? If yes can somebody give a sample code for the same
stacked_bar_chart.png
-
Best Answer Posted by
Naga
Try with this
Code:
series: [{ type: 'column',
xField: 'name',
yField: ['data1', 'data2', 'data3'],
stacked: 'true',
axis: 'bottom',
highlight: true,
showInLegend: true
}]
-
Sencha User
Try with this
Code:
series: [{ type: 'column',
xField: 'name',
yField: ['data1', 'data2', 'data3'],
stacked: 'true',
axis: 'bottom',
highlight: true,
showInLegend: true
}]
-
Sencha User
Thanks a lot,
I was able to create the stacked column chart
-
Sencha User
the column is changed the data in the xfield and y field is not changed it same as it before, the visualisation of the chart oly changed...

Originally Posted by
Naga
Try with this
Code:
series: [{ type: 'column',
xField: 'name',
yField: ['data1', 'data2', 'data3'],
stacked: 'true',
axis: 'bottom',
highlight: true,
showInLegend: true
}]
-
Sencha User
maxycini,
Can you please share the working code with me?
Thanks
-
Sencha User
Sorry it was my mistake, when i applied the changes i saw the change in the graph and assumed its working. But when i observed in details the starcked bar chart was not coming.
I feel as of now there is no way of creating a stacked bar chart in sencha.