|
23 | 23 | }
|
24 | 24 |
|
25 | 25 | """
|
26 |
| - General layout of Plotly figure. |
27 |
| -
|
28 |
| - :param dict titlefont: Line style dictionary. |
29 |
| - :param bool showlegend: Legend hide or show. |
30 |
| - :param float title_x: x axis title size. |
31 |
| - :param float title_y: y axis title size. |
32 |
| - :param str hovermode: hover behaviour. |
33 |
| - :param str paper_bgcolor: background color. |
34 |
| - :param str plot_bgcolor: plot background color. |
| 26 | +General layout of Plotly figure. |
| 27 | +
|
| 28 | +:param dict titlefont: Line style dictionary. |
| 29 | +:param bool showlegend: Legend hide or show. |
| 30 | +:param float title_x: x axis title size. |
| 31 | +:param float title_y: y axis title size. |
| 32 | +:param str hovermode: hover behaviour. |
| 33 | +:param str paper_bgcolor: background color. |
| 34 | +:param str plot_bgcolor: plot background color. |
35 | 35 | """
|
36 | 36 |
|
37 | 37 | cohp_axis_style_dict = {
|
|
50 | 50 | }
|
51 | 51 |
|
52 | 52 | """
|
53 |
| - COXX axis style. |
54 |
| -
|
55 |
| - :param dict titlefont: axis title font style. |
56 |
| - :param dict tickfont: axis tick font style. |
57 |
| - :param str ticks: ticks style. |
58 |
| - :param float tickwidth: width of ticks. |
59 |
| - :param bool showgrid: show or hide axis grid. |
60 |
| - :param bool showline: show or hide axis. |
61 |
| - :param bool zeroline: show or hide zero line. |
62 |
| - :param str zerolinecolor: color of zero line. |
63 |
| - :param float zerolinewidth: width of zero line. |
64 |
| - :param bool mirror: mirror axis. |
65 |
| - :param float linewidth: width of axis line. |
66 |
| - :param str linecolor: color of axis line. |
| 53 | +COXX axis style. |
| 54 | +
|
| 55 | +:param dict titlefont: axis title font style. |
| 56 | +:param dict tickfont: axis tick font style. |
| 57 | +:param str ticks: ticks style. |
| 58 | +:param float tickwidth: width of ticks. |
| 59 | +:param bool showgrid: show or hide axis grid. |
| 60 | +:param bool showline: show or hide axis. |
| 61 | +:param bool zeroline: show or hide zero line. |
| 62 | +:param str zerolinecolor: color of zero line. |
| 63 | +:param float zerolinewidth: width of zero line. |
| 64 | +:param bool mirror: mirror axis. |
| 65 | +:param float linewidth: width of axis line. |
| 66 | +:param str linecolor: color of axis line. |
67 | 67 | """
|
68 | 68 |
|
69 | 69 | energy_axis_style_dict = {
|
|
82 | 82 | }
|
83 | 83 |
|
84 | 84 | """
|
85 |
| - Energy axis style. |
86 |
| -
|
87 |
| - :param dict titlefont: axis title font style. |
88 |
| - :param dict tickfont: axis tick font style. |
89 |
| - :param str ticks: ticks style. |
90 |
| - :param float tickwidth: width of ticks. |
91 |
| - :param bool showgrid: show or hide axis grid. |
92 |
| - :param bool showline: show or hide axis. |
93 |
| - :param bool zeroline: show or hide zero line. |
94 |
| - :param str zerolinecolor: color of zero line. |
95 |
| - :param float zerolinewidth: width of zero line. |
96 |
| - :param bool mirror: mirror axis. |
97 |
| - :param float linewidth: width of axis line. |
98 |
| - :param str linecolor: color of axis line. |
| 85 | +Energy axis style. |
| 86 | +
|
| 87 | +:param dict titlefont: axis title font style. |
| 88 | +:param dict tickfont: axis tick font style. |
| 89 | +:param str ticks: ticks style. |
| 90 | +:param float tickwidth: width of ticks. |
| 91 | +:param bool showgrid: show or hide axis grid. |
| 92 | +:param bool showline: show or hide axis. |
| 93 | +:param bool zeroline: show or hide zero line. |
| 94 | +:param str zerolinecolor: color of zero line. |
| 95 | +:param float zerolinewidth: width of zero line. |
| 96 | +:param bool mirror: mirror axis. |
| 97 | +:param float linewidth: width of axis line. |
| 98 | +:param str linecolor: color of axis line. |
99 | 99 | """
|
100 | 100 |
|
101 | 101 | spin_up_trace_style_dict = {
|
|
105 | 105 | }
|
106 | 106 |
|
107 | 107 | """
|
108 |
| - Line style for Spin.up traces. |
| 108 | +Line style for Spin.up traces. |
109 | 109 |
|
110 |
| - :param dict line: Line style dictionary. |
111 |
| - :param str mode: Plotly mode. |
112 |
| - :param str visible: Trace visibility. |
| 110 | +:param dict line: Line style dictionary. |
| 111 | +:param str mode: Plotly mode. |
| 112 | +:param str visible: Trace visibility. |
113 | 113 | """
|
114 | 114 |
|
115 | 115 | spin_down_trace_style_dict = {
|
|
119 | 119 | }
|
120 | 120 |
|
121 | 121 | """
|
122 |
| - Line style for Spin.down traces. |
| 122 | +Line style for Spin.down traces. |
123 | 123 |
|
124 |
| - :param dict line: Line style dictionary. |
125 |
| - :param str mode: Plotly mode. |
126 |
| - :param str visible: Trace visibility. |
| 124 | +:param dict line: Line style dictionary. |
| 125 | +:param str mode: Plotly mode. |
| 126 | +:param str visible: Trace visibility. |
127 | 127 | """
|
128 | 128 |
|
129 | 129 | legend_style_dict = {
|
|
133 | 133 | }
|
134 | 134 |
|
135 | 135 | """
|
136 |
| - Legend style. |
| 136 | +Legend style. |
137 | 137 |
|
138 |
| - :param str bordercolor: border color of legend. |
139 |
| - :param int borderwidth: width of border. |
140 |
| - :param str traceorder: order of trace. |
| 138 | +:param str bordercolor: border color of legend. |
| 139 | +:param int borderwidth: width of border. |
| 140 | +:param str traceorder: order of trace. |
141 | 141 | """
|
0 commit comments