Dynamic series Line Chart configurations

0
Hello Mendix devs,   I have a Line chart that is using a Dynamic series and in the Advanced tab I can switch to Developer mode and start adding Plotly JSON commands for the general layout options.    Is there a way to target a specific type of series through the Plotly JSON command?
asked
1 answers
0

I managed to show the values above the chart by adding the following config option to the "Custom Series Options"

{
  "mode": "lines+markers+text",
  "textposition": "top center",
  "texttemplate": "%{y}"
}

answered