Setting a size column seems only to change the relative size. I'd like to shrink all the bubbles. Is that possible?
To delimit a maximum bubble size in the Sheets API you would have to set the property sizeAxis.maxSize. You can also set the minimum size to shrink the bubbles even more by setting sizeAxis.minSize. Here you can learn more about how to configure Charts, read this to integrate them into Sheets.
Related
Hello, I want to reduce height of grids in chart, how can I?
I am using iOS-Charts(Daniel Gindi).
What you want to adjust the barSpacing (Charts 2.*) or barWidth (Charts 3.0), to change the size of the bar relative to the size of the grid strip.
The intervals of the grid are calculated dynamically, and may change when you zoom in/out, but you can constraint them also with granularity. This will affect the labels intervals too.
I am creating a column chart using highcharts, I need to specify the width of the column and I am able to achieve that using the plotOptions.column.pointWidth property, after that I need to specify the distance between the columns in pixels, and I don't find anything in the API about it, I tried using plotOptions.column.groupPadding and plotOptions.column.pointPadding but they don't work if the column width is fixed. Please let me know how to achive that.
In addition to specifying the space between columns, I would like to give the columns a background color that spans the entire y-axis.
Do you mean something like in this:
Unfortunately you can set or fixed width for columns (as you are using) or floating width using groupPadding and pointPadding. Highcharts doesn't provide option to set fixed width for bars and between them. You can create an idea here: http://highcharts.uservoice.com/forums/55896-general
This functionality is available for the Pie Chart via the plotOptions size parameter, however after inspecting the Highcharts API the size isn't available for the Gauge.
size API entry for Pie Chart
Considering the likeness of the two charts (being circular), I was hoping there would be a similar option but the gauge always fills some subset of the container div that I am unable to control. Has anyone else run into this issue or found a solution?
By setting the spacing to zero, you can fill the entire space:
http://jsfiddle.net/mkremer90/3sngK/1/
Fiddle with the spacing parameters to change how much the chart fills. As for a percentage based like size option I can't find one either.
I know this is old, but if like me, you have borderWidth set to something greater than 0, you'll find yourself with the tag being positioned (e.g. x="5.5" y="5.5") off from the corner and width and height shrunk. Setting spacing and margin options won't help in this case.
The simple solution then is to avoid setting borderWidth to anything at all; just leave it default or set it to zero. Instead, set the border on the container element you're calling highcharts on.
Alternatively, you could set negative margins and increase size on the container element to compensate for position shift and size shrink on the graph. Might need to wrap the container in a div with style="overflow: hidden;".
I have highchart bubble chart based on eg. http://www.highcharts.com/cases/bubble.htm
The radius for bubbles is set dynamically depending on a table's column value.
The value for that column ranges from 0-20000.For larger values we will take square root.
But for values like 1,2.. we wish to use the values directly, but the bubbles appear too small.
In anyCharts we can set min and max bubble sizes and also it relatively adjusts size.
Is there any way so that bubbles are visible in highcharts.
How can I (if anyhow) control the font size of axis in Google Visualization Motion Chart?
In several chart types I can change the text size with property axisFontSize bit it does not make effect to Motion Chart.
It looks like axisFontSize isn't supported yet for this chart type.
See the feature request on the Google Code site.