I'm currently developing a scatter graph in Angular 4 using ng2-google-charts from https://www.npmjs.com/package/ng2-google-charts
It seems like this is essentially a wrapper for Google Chart Service. The graph looks great with a few values, but when I try to plot a larger dataset (around 100 values), the graph ends up looking like this https://i.sstatic.net/5Gzfn.png
As you can see, the axes are too small to display the full range of values, making it impossible to see any value on the x-axis.
Is there a solution to this issue?
Please refer to this documentation: https://developers.google.com/chart/interactive/docs/gallery/scatterchart#configuration-options
Attempt: I've tried manually setting the width and height of the chart using configuration, which did work:
chartArea:{width:"80%"},
height: 500,
width: 1350
However, is there a way for the chart to automatically adjust its size to fit all values beautifully?