Module Values_0.PanelConfigurationSource

A collection of options that configure how each panel displays in a small multiples chart.

Sourcetype nonrec t = {
  1. title : PanelTitleOptions.t option;
    (*

    Configures the title display within each small multiples panel.

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

    Determines whether or not each panel displays a border.

    *)
  3. borderThickness : PixelLength.t option;
    (*

    Sets the line thickness of panel borders.

    *)
  4. borderStyle : PanelBorderStyle.t option;
    (*

    Sets the line style of panel borders.

    *)
  5. borderColor : HexColorWithTransparency.t option;
    (*

    Sets the line color of panel borders.

    *)
  6. gutterVisibility : Visibility.t option;
    (*

    Determines whether or not negative space between sibling panels is rendered.

    *)
  7. gutterSpacing : PixelLength.t option;
    (*

    Sets the total amount of negative space to display between sibling panels.

    *)
  8. backgroundVisibility : Visibility.t option;
    (*

    Determines whether or not a background for each small multiples panel is rendered.

    *)
  9. backgroundColor : HexColorWithTransparency.t option;
    (*

    Sets the background color for each panel.

    *)
}
Sourceval make : ?title:??? -> ?borderVisibility:??? -> ?borderThickness:??? -> ?borderStyle:??? -> ?borderColor:??? -> ?gutterVisibility:??? -> ?gutterSpacing:??? -> ?backgroundVisibility:??? -> ?backgroundColor:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PixelLength.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of HexColor.t | `Structure of (string * [> `Enum of string | `String of PixelLength.t ]) list ]) 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