Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author methnen

    (@methnen)

    Hey Sofi,

    You could do that with a theme:

    https://github.com/methnen/m-chart/wiki/Themes

    Highcharts has a reverse axis parameter:

    http://api.highcharts.com/highcharts#yAxis.reversed

    So you’re theme would look like this:

    <?php
    
    /**
     * Theme Name: Reversed
     */
    
    return array(
        'yAxis' => array(
            'reversed' => true,
        ),
    );
    Thread Starter Sofi-Soao

    (@sofi-soao)

    Thank you methnen,

    your solution works fine.

    Only the y-Axis title is now shown as “Value” in the frontend. The given title within the chart entry is ignored. But thats not a drama 😉

    I am happy that your plugin works so well!

    Cheers

    Plugin Author methnen

    (@methnen)

    Hmm, that sucks re: the title stuff. Let me look into that.

    Plugin Author methnen

    (@methnen)

    Hey Sofi,

    I can’t duplicate this behavior. Any chance you could shoot me a screenshot of the settings you’re using as well a CSV export of the data?

    This is my email address:

    jamie AT methnen.com

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Vertical axis reverse order?’ is closed to new replies.