Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Graphael line chart [closed]

Tags:

Is there a good tutorial for Graphael (special line charts), I currently trying to implement such a graph with grafael http://www.highcharts.com/demo/?example=line-time-series&theme=default unfortunately there is no documentation.

like image 647
Rhabarber Avatar asked Sep 16 '10 17:09

Rhabarber


People also ask

When should you not use a line chart?

And while there are few hard-and-fast rules when it comes to data visualization, one thing is for certain: line charts are not suitable for comparing multiple categories at one point in time for a single variable.

What is a high low line?

High-low lines link the highest data point of all series in a category to the lowest data point of all series in a category. High-low lines are often used on stock charts to show the highest and lowest price of the stock.

Do Line charts show trends over time?

You can use a line chart in Excel to display trends over time. In Excel, line charts are appropriate if you have text labels, dates, or a few numeric labels on the horizontal axis (x-axis).

What does Series mean in a line chart?

A series is a set of data, for example a line graph or one set of columns. All data plotted on a chart comes from the series object.


2 Answers

A useful resource has been Kenny Shen's GitHub repository where he has begun writing up both documentation and examples for gRaphael.

https://github.com/qoelet/g.raphael

As an example check out the line chart documentation here

like image 140
Smerity Avatar answered Sep 29 '22 16:09

Smerity


The best example of a Raphael linechart must be this one: http://g.raphaeljs.com/linechart.html, from the source code you can get a lot of information on how they work and how they can be configured.

As far as I know there is no official documentation on this (yet?).

like image 32
uzar Avatar answered Sep 29 '22 14:09

uzar