18.2 New Feature of Line Chart

Hi Everyone, Can anyone check with Connect Null Values in Line Charts it's 18.2 new feature. Connect Null Values in Line Charts are not working, the null values are not connecting like previous versions..

https://docs.appian.com/suite/help/18.2/Appian_Release_Notes.html#connect-null-values-in-line-charts 

  Discussion posts and replies are publicly visible

Parents
  • Hi Narmada (narmadap) ,

    in a!lineChartField we have a new parameter called connectNulls which accepts boolean value.

     a!lineChartField(
        label: "Line Chart",
        labelPosition: "ABOVE",
        categories: {"Category 1", "Category 2", "Category 3", "Category 4", "Category 5"},
        series: {
          a!chartSeries(label: "Chart Series", data: {1, null, 3,null,5})
        },
        showLegend: true,
        showTooltips: true,
        connectNulls :true()
      )

Reply
  • Hi Narmada (narmadap) ,

    in a!lineChartField we have a new parameter called connectNulls which accepts boolean value.

     a!lineChartField(
        label: "Line Chart",
        labelPosition: "ABOVE",
        categories: {"Category 1", "Category 2", "Category 3", "Category 4", "Category 5"},
        series: {
          a!chartSeries(label: "Chart Series", data: {1, null, 3,null,5})
        },
        showLegend: true,
        showTooltips: true,
        connectNulls :true()
      )

Children