How to Remove Secondary Y Axis and Rename X/Y Axis in XY Bar Chart (Perspective)

Hi all, I'm currently working with an XY Bar Chart in Ignition Perspective, and I need help with two adjustments:

  1. Remove the secondary Y-axis (which is currently appearing on the right side).
  2. Rename the X and Y axes to reflect more appropriate metric labels.

I've attached a screenshot of the current chart configuration for reference.

Could someone guide me on how to remove the right-side (secondary) Y-axis completely and update the axis names through the chart properties? I'm working within the Perspective module's standard property editor—no scripting yet.

Any insights or best practices would be appreciated!

Thanks in advance.

... how to remove the right-side (secondary) Y-axis completely...

Either,

  • yAxes.1.visible : false
    or
  • Delete yAxes.1.

... and update the axis names through the chart properties?

X-axis: xAxes.0.lable.text
Y-axis: yAxes.n.lable.text where 'n' is the number of the Y-axis ('0' if there is only one).

This appears to be related to your previous question. Again having energy consumption and cases produced share a Y-axis doesn't make sense. You need two Y-axes.

  • yAxes.0.lable.text : kWh`
  • yAxes.1.lable.text : Cases`

Or produce a chart of "Energy Consumption per Case" which seems to be what you are trying to show.

  • yAxes.0.lable.text : kWh / case`

Can You please tell how to change the Y axis scale values in the same I want the Scale values from o to 25000 like I have attached now

yAxes.0.value.range.max
yAxes.0.value.range.min

How to do the trendline? Is there an automatic way having the bars or is independent data?