@@ -150,13 +150,16 @@ self.create_pie_chart(
150
150
use this to select which one.
151
151
title - The title displayed for the chart.
152
152
subtitle - The subtitle displayed for the chart.
153
- data_name - Set the series name. Useful for multi-series charts.
153
+ data_name - The series name. Useful for multi-series charts.
154
+ If no data_name, will default to using "Series 1".
154
155
unit - The description label given to the chart's y-axis values.
155
156
libs - The option to include Chart libraries (JS and CSS files).
156
157
Should be set to True (default) for the first time creating
157
- a chart on a web page. If creating multiple charts on
158
- a web page, you no longer need to re-import the libraries
158
+ a chart on a web page. If creating multiple charts on the
159
+ same web page, you won't need to re-import the libraries
159
160
when creating additional charts.
161
+ labels - If True, displays labels on the chart for data points.
162
+ legend - If True, displays the data point legend on the chart.
160
163
"""
161
164
```
162
165
@@ -170,13 +173,16 @@ self.create_bar_chart(
170
173
use this to select which one.
171
174
title - The title displayed for the chart.
172
175
subtitle - The subtitle displayed for the chart.
173
- data_name - Set the series name. Useful for multi-series charts.
176
+ data_name - The series name. Useful for multi-series charts.
177
+ If no data_name, will default to using "Series 1".
174
178
unit - The description label given to the chart's y-axis values.
175
179
libs - The option to include Chart libraries (JS and CSS files).
176
180
Should be set to True (default) for the first time creating
177
- a chart on a web page. If creating multiple charts on
178
- a web page, you no longer need to re-import the libraries
181
+ a chart on a web page. If creating multiple charts on the
182
+ same web page, you won't need to re-import the libraries
179
183
when creating additional charts.
184
+ labels - If True, displays labels on the chart for data points.
185
+ legend - If True, displays the data point legend on the chart.
180
186
"""
181
187
```
182
188
@@ -190,13 +196,16 @@ self.create_column_chart(
190
196
use this to select which one.
191
197
title - The title displayed for the chart.
192
198
subtitle - The subtitle displayed for the chart.
193
- data_name - Set the series name. Useful for multi-series charts.
199
+ data_name - The series name. Useful for multi-series charts.
200
+ If no data_name, will default to using "Series 1".
194
201
unit - The description label given to the chart's y-axis values.
195
202
libs - The option to include Chart libraries (JS and CSS files).
196
203
Should be set to True (default) for the first time creating
197
- a chart on a web page. If creating multiple charts on
198
- a web page, you no longer need to re-import the libraries
204
+ a chart on a web page. If creating multiple charts on the
205
+ same web page, you won't need to re-import the libraries
199
206
when creating additional charts.
207
+ labels - If True, displays labels on the chart for data points.
208
+ legend - If True, displays the data point legend on the chart.
200
209
"""
201
210
```
202
211
@@ -210,14 +219,17 @@ self.create_line_chart(
210
219
use this to select which one.
211
220
title - The title displayed for the chart.
212
221
subtitle - The subtitle displayed for the chart.
213
- data_name - Set the series name. Useful for multi-series charts.
222
+ data_name - The series name. Useful for multi-series charts.
223
+ If no data_name, will default to using "Series 1".
214
224
unit - The description label given to the chart's y-axis values.
215
225
zero - If True, the y-axis always starts at 0. (Default: False).
216
226
libs - The option to include Chart libraries (JS and CSS files).
217
227
Should be set to True (default) for the first time creating
218
- a chart on a web page. If creating multiple charts on
219
- a web page, you no longer need to re-import the libraries
228
+ a chart on a web page. If creating multiple charts on the
229
+ same web page, you won't need to re-import the libraries
220
230
when creating additional charts.
231
+ labels - If True, displays labels on the chart for data points.
232
+ legend - If True, displays the data point legend on the chart.
221
233
"""
222
234
```
223
235
@@ -231,14 +243,17 @@ self.create_area_chart(
231
243
use this to select which one.
232
244
title - The title displayed for the chart.
233
245
subtitle - The subtitle displayed for the chart.
234
- data_name - Set the series name. Useful for multi-series charts.
246
+ data_name - The series name. Useful for multi-series charts.
247
+ If no data_name, will default to using "Series 1".
235
248
unit - The description label given to the chart's y-axis values.
236
249
zero - If True, the y-axis always starts at 0. (Default: False).
237
250
libs - The option to include Chart libraries (JS and CSS files).
238
251
Should be set to True (default) for the first time creating
239
252
a chart on a web page. If creating multiple charts on the
240
253
same web page, you won't need to re-import the libraries
241
254
when creating additional charts.
255
+ labels - If True, displays labels on the chart for data points.
256
+ legend - If True, displays the data point legend on the chart.
242
257
"""
243
258
```
244
259
0 commit comments