Got it. Actually, the inTextPosition : 'high' does make it more readable.
Thanks,
Steve



On Fri, Mar 29, 2013 at 1:38 PM, Daniel LaLiberte <[email protected]>wrote:

> Steve,
>
> The problem you are seeing with the third Y axis overwriting the second Y
> axis (both on the right) is a known problem.  Although you can use even
> more axes, the support for drawing them properly is lacking, as you have
> discovered.    This is probably something we could fix at least partially
> by offsetting subsequent axes, but there will probably be issues with how
> the gridlines corresponding to the two (or more) axes relate to each other.
>  Putting two sets of axis labels on either side of a line is probably best,
> currently.
>
> There is an undocumented feature you may want to use.  The inside text
> position can be changed from "low" to "high":
>
>     "vAxis": {
>       "textPosition": "in",
>       "inTextPosition": "high"
>     }
>
> dan
>
>
> On Fri, Mar 29, 2013 at 3:47 PM, Steve Morgan <[email protected]>wrote:
>
>> Update: I increased the width of the chart and solved 1). Still dealing
>> with 2).
>> Thanks
>>
>>
>> On Wednesday, March 20, 2013 12:56:23 PM UTC-7, Steve Morgan wrote:
>>
>>> I would like to be able to create multiple scales for the Y axis of a
>>> LineChart. I have found a JavaScript example of how to do this (below), but
>>> I am coding in Java for a GWT application.  The problem is that I can't
>>> figure out how to set series values in Java. I have come across
>>> com.google.gwt.visualization.**client.visualizations.**corechart.Series
>>> (undocumented), but there doesn't seem to be a way to set targetAxisIndex
>>> for a Line Chart. Can anyone point me to a code example? Do I need to use
>>> one of the wrapper libraries for GWT/Visualization or has that
>>> functionality been migrated back into the Google visualization API?
>>> Thanks!
>>>
>>> // Create and draw the visualization.
>>>   new 
>>> google.visualization.**LineChart(document.**getElementById('visualization'**)).
>>>       draw(data, {curveType: "function",width: 500, height: 400,
>>>     vAxes: {0: {logScale: false},
>>>             1: {logScale: false, maxValue: 10}},
>>>     series:{
>>>        0:{targetAxisIndex:0},
>>>        1:{targetAxisIndex:0},
>>>        2:{targetAxisIndex:1}}}
>>>           );
>>>
>>>
>>>  --
>> 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?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>
>
>
> --
> Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2>
>  - 978-394-1058
> [email protected] <[email protected]>   562D 5CC, Cambridge MA
> [email protected] <[email protected]> 9 Juniper Ridge
> Road, Acton MA
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google Visualization API" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-visualization-api/ER4722vGm6Q/unsubscribe?hl=en
> .
> To unsubscribe from this group and all its topics, 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?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to