Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Series
Description
One chart series.
Properties
Name |
JsonSchemaType |
Description |
axis_index |
integer |
Order of the axis, indexes starting at 0. |
column_id |
integer |
ID of the column with data for this series. |
format |
reference to Era.Common.DataDefinition.Reports.Format |
Formatting of the data series. |
format_column_id |
integer |
Column from which data for formatting should be taken. If not present, formatting is done based on the column [column_id]. |
label |
reference to Era.Common.DataDefinition.Common.Label |
Name of the series. |
ticks_limit |
integer |
Deprecated, do not use. Maximal count of values, which can be displayed. |
Dual message (request/response)
No dual message.Referenced in messages
Era.Common.DataDefinition.Reports.Report_Rendering_Chart
JsonSchema
{
"title": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Series",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Series"
],
"properties": {
"Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Series": {
"$ref": "#/definitions/Report_Rendering_Chart_Series"
}
},
"definitions": {
"Report_Rendering_Chart_Series": {
"additionalProperties": false,
"required": [
"axis_index",
"column_id",
"label"
],
"type": "object",
"properties": {
"axis_index": {
"type": "integer"
},
"column_id": {
"type": "integer"
},
"format": {
"$ref": "Era.Common.DataDefinition.Reports.Format#/definitions/Format"
},
"format_column_id": {
"type": "integer"
},
"label": {
"$ref": "Era.Common.DataDefinition.Common.Label#/definitions/Label"
},
"ticks_limit": {
"exclusiveMaximum": true,
"exclusiveMinimum": true,
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
}
}
}
}
}