XyChartArgs

data class XyChartArgs(val chartOptions: Output<ChartOptionsArgs>? = null, val dataSets: Output<List<DataSetArgs>>, val thresholds: Output<List<ThresholdArgs>>? = null, val timeshiftDuration: Output<String>? = null, val xAxis: Output<AxisArgs>? = null, val y2Axis: Output<AxisArgs>? = null, val yAxis: Output<AxisArgs>? = null) : ConvertibleToJava<XyChartArgs>

A chart that displays data on a 2D (X and Y axes) plane.

Constructors

Link copied to clipboard
fun XyChartArgs(chartOptions: Output<ChartOptionsArgs>? = null, dataSets: Output<List<DataSetArgs>>, thresholds: Output<List<ThresholdArgs>>? = null, timeshiftDuration: Output<String>? = null, xAxis: Output<AxisArgs>? = null, y2Axis: Output<AxisArgs>? = null, yAxis: Output<AxisArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): XyChartArgs

Properties

Link copied to clipboard
val chartOptions: Output<ChartOptionsArgs>? = null

Display options for the chart.

Link copied to clipboard
val dataSets: Output<List<DataSetArgs>>

The data displayed in this chart.

Link copied to clipboard
val thresholds: Output<List<ThresholdArgs>>? = null

Threshold lines drawn horizontally across the chart.

Link copied to clipboard
val timeshiftDuration: Output<String>? = null

The duration used to display a comparison chart. A comparison chart simultaneously shows values from two similar-length time periods (e.g., week-over-week metrics). The duration must be positive, and it can only be applied to charts with data sets of LINE plot type.

Link copied to clipboard
val xAxis: Output<AxisArgs>? = null

The properties applied to the x-axis.

Link copied to clipboard
val y2Axis: Output<AxisArgs>? = null

The properties applied to the y2-axis.

Link copied to clipboard
val yAxis: Output<AxisArgs>? = null

The properties applied to the y-axis.