Skip to content

GGraphArea

type: String
required: true

The value key in the data source to use for the area. if baseValueKey or baseValue is not null, the area will be the space between the value defined by valueKey and the value defined by baseValueKey or baseValue. or else the area will be the space between the value and bottom of graph area.

Example when both baseValueKey and baseValue are not set
chart view

type: double?
required: false
default: null

Fixed base value for the area.
if this is not null, the area will be the space between the value defined by valueKey and this base value.

Example when valueKey set to high and baseValue set to 200
chart view

type: String?
required: false
default: null

The value key in the data source to use as the base value for the area.
if this is not null, the area will be the space between the value defined by valueKey and the value defined by this key.

Example when valueKey set to high and baseValueKey set to low
chart view

See GGraph for inherited properties.