# GraffitiGridChart
Class
## Enumerations
| Name | Value | Description |
| --- | :---: | --- |
| ChartTypes | Line <br> Bar <br> Tristate <br> Discrete <br> Bullet <br> BoxPlot <br> Pie | Supported chart display types. |
## Methods
| Name | Parameters | Return Type | Description |
| --- | :---: | :---: | --- |
| Constructor | Type as ChartTypes | (None) | Creates a new instance of the class. |
| toJSON | (None) | JSONItem | |
## Properties
| Name | Type | Default Value | Description |
| --- | :---: | :---: | --- |
| FillColor | Color | &c0000ff | Color used to chart area. |
| HasFillColor | Boolean | False | If False the chart will have no background color. |
| HasHoverHighlight | Boolean | True | When True, hovering over the chart will cause a change in the data point highlight color. |
| HasHoverHighlightColor | Boolean | False | When True, the HoverHighlightColor value will be used for highlighting hovered data points. |
| HasRangeMaximum | Boolean | False | When True, the RangeMaximum property will dictate the highest possible displayed value for the chart. |
| HasRangeMinimum | Boolean | False | When True, the RangeMinimum property will dictate the lowest possible displayed value for the chart. |
| HasTooltips | Boolean | True | Controls whether tooltips will be displayed for data points/areas. |
| HoverHighlightColor | Color | Nil | Color used when hovering over a data point or area. |
| IsInteractive | Boolean | True | Mouse interaction will have no effect on display when False. |
| LineColor | Color | &c0000ff | Color used to draw lines in the display. |
| LocaleDecimal | String | "." | Character used when formatting double values. |
| LocaleThousands | String | " | Character used when formatting double values. |
| LocaleThousandsCount | Integer | 3 | Number of characters in between thousands separators. |
| RangeMaximum | Integer | -1 | Maximum value range displayed. |
| RangeMinimum | Integer | -1 | Minimum value range displayed. |
| TooltipFormat | String | Nil | String used to customize tooltip display ( Reference ). |
| TooltipTitle | String | Nil | String to display at the top of tooltips. |
| Type | ChartTypes | Nil | Chart type to display. |