• Resolved burchems

    (@burchems)


    Here’s my shortcode:
    [gdoc key=”https://docs.google.com/spreadsheets/d/1gE6tqODSDwcspkIwIvg6T6-8CIz5lA3Pw73rFS0meFI/edit#gid=1275782974″ query=”Select B, C, F” chart=”Line” style=”height: 500px; max-width: 100%;” chart_line_width=”1″ chart_legend='{“position”: “top”}’ chart_series='{1: {“Axis”: “T”}}’]

    I’ve also tried:
    <!–
    chart_series='{“0”: {“axis”: “Pressure”}, “1”: {“axis”: “T”}}’
    chart_v_axes='{“format”:”# mBar,# °F”}’
    //this one worked, but want label instead of units on the side:
    chart_v_axis='{“format”: “mBar”}’ chart_h_axis='{“format”: “°F”}’

    chart_series='{“axis”: {0: “Pressure”, 1: “T”}}’
    chart_series='{“axis”: {“0”: “Pressure”, “1”: “T”}}’
    chart_series='{“0”: “Pressure”}’ chart_series='{“1″:”T”}’
    series='{0: {axis: “Pressure”}, 1: {axis: “T”}}’
    series: {0: {axis: ‘Temps’}, 1: {axis: ‘Daylight’}}

    0: {axis: ‘Temps’},
    chart_series='{“axis”: “Pressure”}’
    chart_series='{0: {“axis”: “Pressure”}, 1: {“axis”: “T”}}’
    chart_series='{“0”: {“axis”: “Pressure”}, “1”: {“axis”: “T”}}’
    chart_series='{“axis”: “Pressure”, “axis”: “T”}’
    –>

    Appreciate any assistance 🙂

Viewing 1 replies (of 1 total)
  • This may be too late to help, but at the very end of your first code you have

    chart_series='{1:{"Axis": "T"}}'

    That 1 needs to be quoted as “1”

    chart_series='{"1":{"Axis": "T"}}'

    In your second code, check your use of quotes, as well.

Viewing 1 replies (of 1 total)

The topic ‘Having trouble enabling 2 vertical Axes’ is closed to new replies.