Type alias ParameterPlot

ParameterPlot: {
    axis: "y1" | "y2";
    color: string;
    visible: boolean;
}

Defines visualization settings for a parameter when displayed on plots or charts.

Type declaration

  • axis: "y1" | "y2"

    Axis association for plotting.

    • 'y1' — Primary Y-axis
    • 'y2' — Secondary Y-axis
  • color: string

    Color code (typically in HEX or RGB) used to render this parameter on the plot.

  • visible: boolean

    Determines whether the parameter should be visible on the plot.

Generated using TypeDoc