Using the right vAxis changes the default position of the legend from the 
right side of the chart to the top, so you need to set the legend.position 
option to "right" in order to move it back:

legend: {
    position: 'right'
}

you will probably need to change the chartArea.width and/or chartArea.left 
options as well, to make room for the legend:

chartArea: {
    left: ##, // use this to set the left edge of the chartArea in relation 
to the left edge of the chart container
    width: ##  - or - '##%' // use this to set the width of the chartArea 
as a number of pixels or a percent of the width of the chart's container
}

Whatever you specify for the chartArea.left and chartArea.width options, 
you should also specify in the ChartRangeFilter control's 
ui.chartOptions.chartArea.left/width, if you want the chart and control to 
be aligned.

On Wednesday, September 11, 2013 11:28:35 AM UTC-4, khamosh wrote:
>
> I'd like to change the position of the labels on the bottom axis.
> Maybe it is something to do the GetNextAxisLabel event, but I can't find an
> exemple...
>
> By default, the label is just under the point defining ech increment (I
> hope you understand me)
> and I'd like to have each label right its point and the
> following point.(like picture)
>
> If you have already done this and could give me an example, I would be very
> grateful.
>
> thanks in advance
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to