Good afternoon,
I'm looking for a way to create something similar to this picture.
Do you know if there is any component for this?
thanks
Discussion posts and replies are publicly visible
this might be helpful
{ a!barChartField( label: "Bar Chart", labelPosition: "COLLAPSED", categories: { "Category 1" }, series: { a!chartSeries(label: "A", data: { 35 }), a!chartSeries(label: "B", data: { 15 }), a!chartSeries(label: "C", data: { 20 }), a!chartSeries(label: "D", data: { 10 }), a!chartSeries(label: "E", data: { 10 }), a!chartSeries(label: "F", data: { 10 }) }, stacking: "PERCENT_TO_TOTAL", showLegend: true(), showDataLabels: true(), showTooltips: true, allowImageDownload: false(), colorScheme: "RAINFOREST", height: "MICRO", xAxisStyle: "NONE", yAxisStyle: "NONE" ) }
Great, thank you very much, that's exactly what I was looking to do.