SETEMPTY sets an empty value for a dimension in the initialized chart.
(id string)
| 96 | |
| 97 | // SETEMPTY sets an empty value for a dimension in the initialized chart. |
| 98 | func (a *API) SETEMPTY(id string) { |
| 99 | _, _ = a.Write([]byte("SET '" + id + "' = \n")) |
| 100 | } |
| 101 | |
| 102 | // VARIABLE sets the value of a CHART scope variable for the initialized chart. |
| 103 | func (a *API) VARIABLE(ID string, value float64) { |