| method | Explanation | arguments |
|---|---|---|
| AddRow() | Used to add data y-values to the graph. | RowValues (Array) |
| setTimeScale() | Used to create a time-type X-axis scale. | hour, min |
| setDateScale() | Used to create a date-type X-axis scale. | month, day, year, londDate (Boolean) |
| setLegend() | Used to add a legend to the Graph. | legValues (Array) |
| property | Explanation | type |
|---|---|---|
| Mode | Sets the mode of the Graph: 1- Bar, 2 - Stacked, 3 - Stacked Area | integer |
| ShowYear | True means show the year along with the date. | boolean |
| ShowDay | True means show the day of the week along with the date. | boolean |
| XScale | X-axis scale increment (could be days or minutes depending on the scale type) | integer |
| YScale | Y-axis scale increment | integer |
| XScaleTick | Indicates the number of ticks between ticks with labels. (E.g., 2 would put labels on every other tick.) This should be used if the X-axis tick label won't fit because the ticks are too close together. | integer |
| YOffset | Indicates the Y-offset of the X-axis (the "X-intercept"). Only use on graphs with only positive (or only negative) values. | integer |
| Title | Title of the graph | string |
| YLabel | Y-Label of the graph | string |
| XLabel | X-Label of the graph | string |
| ImageStyle | Css Style for Bar images. | string |