package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiSheetsV4Model.DataLabelSource

Sourcetype t = {
  1. _type : string;
    (*

    The type of the data label.

    *)
  2. textFormat : TextFormat.t;
    (*

    The text format used for the data label. The link field is not supported.

    *)
  3. placement : string;
    (*

    The placement of the data label relative to the labeled data.

    *)
  4. customLabelData : ChartData.t;
    (*

    Data to use for custom labels. Only used if type is set to CUSTOM. This data must be the same length as the series or other element this data label is applied to. In addition, if the series is split into multiple source ranges, this source data must come from the next column in the source data. For example, if the series is B2:B4,E6:E8 then this data must come from C2:C4,F6:F8.

    *)
}
Sourceval _type : (t, string) GapiLens.t
Sourceval textFormat : (t, TextFormat.t) GapiLens.t
Sourceval placement : (t, string) GapiLens.t
Sourceval customLabelData : (t, ChartData.t) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t