Graph Y-axis label - cannot change or turn-off

Issue #463 resolved
Wei Wang created an issue

On the new release, I noticed a likely Highcharts bug where we can’t change the Y-axis label (or turn it off). Interestingly, it does appear to work on graphs with a secondary Y-axis. It also shows as “Values”: Using Apliqo_Demo as an example

If we try to change the label:

Or turn it off:

Comments (6)

  1. srichardson

    Hi Wei,

    We are aware of this issue and a fix has been made. With the latest fix pack the configuration for yAxis has been changed to yAxis0

    If you wish it to work right now there is a workaround where the yAxis needs to be changed to use an array. So you can wrap the contents of yAxis in an array.

    eg:

    {
      "chartOptions": {
        "yAxis": [
          {
            "title": {
              "enabled": false
            }
          }
        ]
      }
    }
    

  2. Paul Sposito

    Hi Wei,

    Did you also happen to notice if y axis labels no longer format automatically (e.g. 5,000,000 to 5.0M with no formats specified in the Adv Options)?

  3. srichardson

    The issue with the default formatting has also been rectified and will be available in the next fix pack.

  4. Log in to comment