how to create a stacked chart in appian

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

Parents
  • 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"
      )
    }

Reply
  • 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"
      )
    }

Children