Shubham Yedage
Shubham Yedage

Reputation: 21

Dual Axes Column Chart scaling issue for column chart

I am having trouble with dual axes column chart. Its not scaling properly for second y axis. I want know how scaling works at secondary y axis (i.e. for column chart). So I can make my data visible on graph. I have through solutions but I am not able to get to root cause. I have tried to put this scenario in following fiddle. I am providing 2 images where one image is gives expected view. Scaling is optimum. While another image is has map which is not scaled properly.Expected Image Unexpected Image Thanks in advance!

Upvotes: 0

Views: 102

Answers (1)

jlbriggs
jlbriggs

Reputation: 17791

This is usually solved by adding alignTicks: false at the chart object level. You can also add gridlineWidth: 0 to your 2nd axis to alleviate any issues with misaligned gridlines.

Updated fiddle:

Reference:

Upvotes: 1

Related Questions