Module Values.DisplayConfigSource

Defines how the widget's data should be visualized, including chart type, color schemes, axis configurations, and other display preferences.

Sourcetype nonrec t = {
  1. graph : GraphDisplayConfigMap.t option;
    (*

    The configuration for graphical display of the widget data, including chart type and visual options.

    *)
  2. table : TableDisplayConfigStruct.t option;
    (*

    The configuration for tabular display of the widget data.

    *)
}
Sourceval make : ?graph:??? -> ?table:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of GenericString.t ] * [> `Structure of (string * [> `Enum of string ]) list ]) list | `Structure of 'a 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