-
areaChartData
-
Type:
Properties:
| Name |
Type |
Description |
data |
Array.<Object>
|
All data entries |
date |
String
|
Date of the entry |
name |
String
|
Name of the entry |
value |
Number
|
Value of the entry |
- Source:
-
Example
{
'data': [
{
"date": "2011-01-05T00:00:00Z",
"name": "Direct",
"value": 0
}
]
}
-
BarChartData
-
Type:
Properties:
| Name |
Type |
Description |
value |
Number
|
Value of the group (required) |
name |
String
|
Name of the group (required) |
- Source:
-
Example
[
{
value: 1,
name: 'glittering'
},
{
value: 1,
name: 'luminous'
}
]
-
BrushChartData
-
Type:
Properties:
| Name |
Type |
Description |
value |
Number
|
Value to chart (required) |
date |
Date
|
Date of the value (required) |
- Source:
-
Example
[
{
value: 1,
date: '2011-01-06T00:00:00Z'
},
{
value: 2,
date: '2011-01-07T00:00:00Z'
}
]
-
D3Selection
-
Type:
Properties:
| Name |
Type |
Description |
length |
Number
|
Size of the selection |
parentNode |
DOMElement
|
Parent of the selection |
- Source:
-
-
DonutChartData
-
Type:
Properties:
| Name |
Type |
Description |
quantity |
Number
|
Quantity of the group (required) |
percentage |
Number
|
Percentage of the total (required) |
name |
String
|
Name of the group (required) |
id |
Number
|
Identifier for the group required for legend feature (optional) |
- Source:
-
Example
[
{
quantity: 1,
percentage: 50,
name: 'glittering',
id: 1
},
{
quantity: 1,
percentage: 50,
name: 'luminous',
id: 2
}
]
-
LegendChartData
-
Type:
Properties:
| Name |
Type |
Description |
id |
Number
|
Id of the group (required) |
quantity |
Number
|
Quantity of the group (required) |
name |
String
|
Name of the group (required) |
- Source:
-
Example
[
{
id: 1,
quantity: 2,
name: 'glittering'
},
{
id: 2,
quantity: 3,
name: 'luminous'
}
-
LineChartData
-
Type:
Properties:
- Source:
-
Example
{
dataByTopic: [
{
topicName: 'San Francisco',
topic: 123,
dates: [
{
date: '2017-01-16T16:00:00-08:00',
value: 1
},
{
date: '2017-01-16T17:00:00-08:00',
value: 2
}
]
},
{
topicName: 'Other',
topic: 345,
dates: [
{...},
{...}
]
}
]
}
-
lineChartDataByTopic
-
Type:
Properties:
| Name |
Type |
Description |
topicName |
String
|
Topic name (required) |
topic |
Number
|
Topic identifier (required) |
dates |
Array.<Object>
|
All date entries with values for that topic (required) |
- Source:
-
Example
{
topicName: 'San Francisco',
topic: 123,
dates: [
{
date: '2017-01-16T16:00:00-08:00',
value: 1
},
{
date: '2017-01-16T17:00:00-08:00',
value: 2
}
]
}
-
SparklineChartData
-
Type:
Properties:
| Name |
Type |
Description |
value |
Number
|
Value of the group (required) |
name |
String
|
Name of the group (required) |
- Source:
-
Example
[
{
value: 1,
date: '2011-01-06T00:00:00Z'
},
{
value: 2,
date: '2011-01-07T00:00:00Z'
}
-
StepChartData
-
Type:
Properties:
| Name |
Type |
Description |
key |
String
|
Key we measure (required) |
value |
Number
|
value of the key (required) |
- Source:
-
Example
[
{
value: 1,
key: 'glittering'
},
{
value: 1,
key: 'luminous'
}
]