Module Values_0.KPISparklineOptionsSource

The options that determine the visibility, color, type, and tooltip visibility of the sparkline of a KPI visual.

Sourcetype nonrec t = {
  1. visibility : Visibility.t option;
    (*

    The visibility of the sparkline.

    *)
  2. type_ : KPISparklineType.t;
    (*

    The type of the sparkline.

    *)
  3. color : HexColor.t option;
    (*

    The color of the sparkline.

    *)
  4. tooltipVisibility : Visibility.t option;
    (*

    The tooltip visibility of the sparkline.

    *)
}
Sourceval context_ : string
Sourceval make : ?visibility:??? -> ?color:??? -> ?tooltipVisibility:??? -> type_:KPISparklineType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of HexColor.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t