MCPcopy Index your code
hub / github.com/plotly/plotly.py / make_XAxis

Function make_XAxis

plotly/figure_factory/_violin.py:123–137  ·  view source on GitHub ↗

Makes the x-axis for a violin plot.

(xaxis_title, xaxis_range)

Source from the content-addressed store, hash-verified

121
122
123def make_XAxis(xaxis_title, xaxis_range):
124 """
125 Makes the x-axis for a violin plot.
126 """
127 xaxis = graph_objs.layout.XAxis(
128 title=xaxis_title,
129 range=xaxis_range,
130 showgrid=False,
131 zeroline=False,
132 showline=False,
133 mirror=False,
134 ticks="",
135 showticklabels=False,
136 )
137 return xaxis
138
139
140def make_YAxis(yaxis_title):

Callers 4

violin_no_colorscaleFunction · 0.85
violin_colorscaleFunction · 0.85
violin_dictFunction · 0.85
create_violinFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected