You can change the colors of the data series by using either the "colors" 
or the series.<series index>.color options.  Colors are set by using HTML 
color strings:

colors: ['red', 'maroon', '#338067', '#FC53D2']

or:

series: {
    0: {
        color: 'red'
    },
    1: {
        color: 'maroon'
    },
    2: {
        color: '#338067'
    },
    3: {
        color: '#FC53D2'
    }
}

As far as the x-axis labels go, your times are being entered as strings, 
and you aren't giving them sufficient space to draw, so the API is cutting 
them off.  If you switch to a "date", "datetime", or "timeofday" type axis, 
you will have fewer axis labels, but they will be drawn fully:

var data = google.visualization.arrayToDataTable([

    ['Time', 'MACD', 'Signal', 'Dif'],
    [new Date(2013, 7, 5, 16, 52, 56), 0.147344, 0.085812, 0.061532],

    //...

]);


On Monday, August 5, 2013 5:27:37 PM UTC-4, Luke Skywalk wrote:
>
> Also why is my time on the x axis hidden with ..., i dont want that, it 
> has something to do with the fact that i have dual y-axis because the 
> legend is on top.
>

-- 
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