Module Values_0.DataLabelOptionsSource

The options that determine the presentation of the data labels.

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

    Determines the visibility of the data labels.

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

    Determines the visibility of the category field labels.

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

    Determines the visibility of the measure field labels.

    *)
  4. dataLabelTypes : DataLabelTypes.t option;
    (*

    The option that determines the data label type.

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

    Determines the position of the data labels.

    *)
  6. labelContent : DataLabelContent.t option;
    (*

    Determines the content of the data labels.

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

    Determines the font configuration of the data labels.

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

    Determines the color of the data labels.

    *)
  9. overlap : DataLabelOverlap.t option;
    (*

    Determines whether overlap is enabled or disabled for the data labels.

    *)
  10. totalsVisibility : Visibility.t option;
    (*

    Determines the visibility of the total.

    *)
}
Sourceval make : ?visibility:??? -> ?categoryLabelVisibility:??? -> ?measureLabelVisibility:??? -> ?dataLabelTypes:??? -> ?position:??? -> ?labelContent:??? -> ?labelFontConfiguration:??? -> ?labelColor:??? -> ?overlap:??? -> ?totalsVisibility:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of FieldId.t ]) list ]) list ] list | `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