Open pydubreucq opened 9 years ago
Hi, Have you tried something like this: For 100% Stacked bars:
-- CHART: {
-- type: "ColumnChart",
-- dataset: 0,
-- columns: [
-- "Name of the client",
-- "No of sold",
-- "No of ordered"
-- ],
-- options: {
-- isStacked: "percent",
-- animation: {
-- duration: 2000,
-- easing: 'inAndOut',
-- startup: true,
-- },
-- explorer: { keepInBounds: true }
-- }
-- }
OR for just Stacked Bars:
-- CHART: {
-- type: "ColumnChart",
-- dataset: 0,
-- columns: [
-- "Name of the client",
-- "No of sold",
-- "No of ordered"
-- ],
-- options: {
-- isStacked: true,
-- animation: {
-- duration: 2000,
-- easing: 'inAndOut',
-- startup: true,
-- },
-- explorer: { keepInBounds: true }
-- }
-- }
Hi, It could be a nice feature du add Stacked bar charts type like in this docs : https://developers.google.com/chart/interactive/docs/gallery/barchart I don't know how, but it could be very usefull to me. Best Regards Pierre-Yves