-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple Bargraphs #8
Comments
To get the colours right I think you just need to spell it 'colours' instead of 'colors' (I'm British so it's all British English). Does Ico.HorizontalBarGraph make the kind of side-by-side graph you want? You can find some examples in here: https://github.com/alexyoung/ico/blob/master/docs/examples.html And API docs here: http://alexyoung.github.com/ico/ Cheers, Alex |
Thanks for Colours correction :) |
The "Multiple Series Chart" example? |
Yes |
That's Ico.HorizontalBarGraph |
It doesn't show the desired output, it shows the bars stacked on each other. On Wed, Sep 21, 2011 at 12:23 PM, Alex Young <
|
I am using the following to create multiple bar graph
new Ico.BarGraph(document.getElementById('graph_search_image'), {one: [100,200,300,400], two: [120,100,220,500]}, {meanline: true, grid: true,colors: {one: '#aaa', two: '#bbb'},labels: ['jan','feb', 'mar','apr'] });
The graph renders good but I want the bars side-by-side instead of on top of each other, how do I accomplish that, and how do I make the graph load colors I want it to load, (its always random).
The text was updated successfully, but these errors were encountered: