TimeSeriesLabels

TimeSeriesLabels tag creates labeled time range

Parameters

Param Type Default Description
name string name of the element
toname string name of the timeseries to label
[opacity] float 0.9 opacity of range
[fillColor] string range fill color, default is transparent
[strokeWidth] number 1 width of the stroke

Example

<View>
  <TimeSeriesLabels name="label" toName="ts">
      <Label value="Run"/>
      <Label value="Walk"/>
  </TimeSeriesLabels>

  <TimeSeries name="ts" value="$csv" valueType="url">
     <Channel column="first_column"/>
  </TimeSeries>
</View>