Module Values_0.FunnelChartDataLabelOptionsSource

The options that determine the presentation of the data labels.

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

    The visibility option that determines if data labels are displayed.

    *)
  2. categoryLabelVisibility : Visibility.t option;
    (*

    The visibility of the category labels within the data labels.

    *)
  3. measureLabelVisibility : Visibility.t option;
    (*

    The visibility of the measure labels within the data labels.

    *)
  4. position : DataLabelPosition.t option;
    (*

    Determines the positioning of the data label relative to a section of the funnel.

    *)
  5. labelFontConfiguration : FontConfiguration.t option;
    (*

    The font configuration for the data labels. Only the FontSize attribute of the font configuration is used for data labels.

    *)
  6. labelColor : HexColor.t option;
    (*

    The color of the data label text.

    *)
  7. measureDataLabelStyle : FunnelChartMeasureDataLabelStyle.t option;
    (*

    Determines the style of the metric labels.

    *)
}
Sourceval make : ?visibility:??? -> ?categoryLabelVisibility:??? -> ?measureLabelVisibility:??? -> ?position:??? -> ?labelFontConfiguration:??? -> ?labelColor:??? -> ?measureDataLabelStyle:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of HexColor.t | `Structure of (string * [> `Enum of string | `String of HexColor.t | `Structure of (string * [> `Enum of string | `String of PixelLength.t ]) list ]) list ]) 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