You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:param (float) horizontal_spacing: see the 'horizontal_spacing' param in
228
-
plotly.tools.make_subplots. Ranges between 0 and 1.
229
-
:param (float) vertical_spacing: see the 'vertical_spacing' param in
230
-
plotly.tools.make_subplots. Ranges between 0 and 1.
231
-
:param (dict) scatter_options: describes attributes for the scatter trace
232
-
in each subplot such as name and marker size. Call
233
-
help(plotly.graph_objs.Scatter) for more information on valid params.
234
-
:param layout_options: describes attributes for the layout of the figure
235
-
such as title, height and width. Call help(plotly.graph_objs.Layout)
236
-
for more information on valid params.
237
-
212
+
subtitles : str
213
+
The column name or dictionary key for the subtitle of each subplot chart. The subplots are displayed right underneath each title.
214
+
titles : str
215
+
The column name or dictionary key for the main label of each subplot chart.
216
+
orientation : bool
217
+
If 'h', the bars are placed horizontally as rows. If 'v' the bars are placed vertically in the chart.
218
+
range_colors : list
219
+
A tuple of two colors between which all the rectangles for the range are drawn. These rectangles are meant to be qualitative
220
+
indicators against which the marker and measure bars are compared. Default is ('rgb(200, 200, 200)', 'rgb(245, 245, 245)').
221
+
measure_colors : list
222
+
A tuple of two colors which is used to color the thin quantitative bars in the bullet chart. Default is ('rgb(31, 119, 180)', 'rgb(176, 196, 221)').
223
+
horizontal_spacing : float
224
+
See the 'horizontal_spacing' param in plotly.tools.make_subplots. Ranges between 0 and 1.
225
+
vertical_spacing : float
226
+
See the 'vertical_spacing' param in plotly.tools.make_subplots. Ranges between 0 and 1.
227
+
scatter_options : dict
228
+
Describes attributes for the scatter trace in each subplot such as name and marker size. Call help(plotly.graph_objs.Scatter) for more information on valid params.
229
+
layout_options
230
+
Describes attributes for the layout of the figure such as title, height and width. Call help(plotly.graph_objs.Layout) for more information on valid params.
231
+
232
+
Examples
233
+
--------
238
234
Example 1: Use a Dictionary
239
235
240
236
>>> import plotly.figure_factory as ff
241
-
242
237
>>> data = [
243
238
... {"label": "revenue", "sublabel": "us$, in thousands",
0 commit comments