Skip to main content

ChartSeries

No description

type ChartSeries {
name: String!
unit: ChartSeriesUnit
resource: PerformanceResource
values(
from: DateTime!
to: DateTime!
resolution: Resolution!
): [PerformanceValue!]!
baseValues(
from: DateTime!
to: DateTime!
): [PerformanceValueBase!]!
type: PerformanceResourceType!
}

Fields

ChartSeries.name ● String! non-null scalar

ChartSeries.unit ● ChartSeriesUnit enum

ChartSeries.resource ● PerformanceResource object

ChartSeries.values ● [PerformanceValue!]! non-null object

Performance values are directly accessible over the performance resource.

ChartSeries.values.from ● DateTime! non-null scalar
ChartSeries.values.to ● DateTime! non-null scalar
ChartSeries.values.resolution ● Resolution! non-null enum

ChartSeries.baseValues ● [PerformanceValueBase!]! non-null object

Performance values from the base performance collection

ChartSeries.baseValues.from ● DateTime! non-null scalar
ChartSeries.baseValues.to ● DateTime! non-null scalar

ChartSeries.type ● PerformanceResourceType! non-null object

The performance resource type

Member Of

Chart object