Module Values_0.DonutOptionsSource

The options for configuring a donut chart or pie chart.

Sourcetype nonrec t = {
  1. arcOptions : ArcOptions.t option;
    (*

    The option for define the arc of the chart shape. Valid values are as follows: WHOLE - A pie chart SMALL- A small-sized donut chart MEDIUM- A medium-sized donut chart LARGE- A large-sized donut chart

    *)
  2. donutCenterOptions : DonutCenterOptions.t option;
    (*

    The label options of the label that is displayed in the center of a donut chart. This option isn't available for pie charts.

    *)
}
Sourceval make : ?arcOptions:??? -> ?donutCenterOptions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string ]) 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