Module Values_0.TableCellStyleSource

The table cell style for a cell in pivot table or table visual.

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

    The visibility of the table cells.

    *)
  2. fontConfiguration : FontConfiguration.t option;
    (*

    The font configuration of the table cells.

    *)
  3. textWrap : TextWrap.t option;
    (*

    The text wrap (none, wrap) for the table cells.

    *)
  4. horizontalTextAlignment : HorizontalTextAlignment.t option;
    (*

    The horizontal text alignment (left, center, right, auto) for the table cells.

    *)
  5. verticalTextAlignment : VerticalTextAlignment.t option;
    (*

    The vertical text alignment (top, middle, bottom) for the table cells.

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

    The background color for the table cells.

    *)
  7. height : TableFieldHeight.t option;
    (*

    The height color for the table cells.

    *)
  8. border : GlobalTableBorderOptions.t option;
    (*

    The borders for the table cells.

    *)
}
Sourceval make : ?visibility:??? -> ?fontConfiguration:??? -> ?textWrap:??? -> ?horizontalTextAlignment:??? -> ?verticalTextAlignment:??? -> ?backgroundColor:??? -> ?height:??? -> ?border:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of TableFieldHeight.t | `String of HexColor.t | `Structure of (string * [> `Enum of string | `String of HexColor.t | `Structure of (string * [> `Enum of string | `Integer of TableBorderThickness.t | `String of PixelLength.t | `Structure of (string * [> `Enum of string | `Integer of TableBorderThickness.t | `String of HexColor.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