javascript - Line chart auto scaling -
i'm using google visualization charts in grails app. i'm using line chart present data behaves oddly when add alot rows data here screens how prevent such scalling ? woudl scalling same when have alot data , none data. don't mean length of chart because natural gets bigger when add more data, size of labels haxis labels , vaxis label getting bigger without reason here how created chart visualization.draw(visualization_data, {width: 55840, title: 'wykres wydajno\u015bci', vaxis: {textposition: 'in'}, haxis: {direction: 1, slantedtext: true, slantedtextangle: 90}, pointsize: 10, chartarea: {top: 10, width: '50%', height: '50%', left: 10}, legend: {position: 'right'}}); and styling #linechart { overflow-x: scroll; overflow-y: hidden; width: 100%; height: 500px; } you can use textstyle option on both axis' set fontsize textstyle: { fontsize: 12 } see follo...