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
<td>Background color of the graph in as (<b>Hex</b>: "#111111" or <b>Color Name</b>: "darkblue" or <b>RGB|RGBA</b>: "rgba(0,0,0,0.5)").</td>
149
149
</tr>
150
150
<tr>
151
-
<th>gridColor</th>
151
+
<td>gridColor</td>
152
152
<td>"rgba(255,255,255,0.1)"</td>
153
153
<td>{gridColor: "rgba(255,255,255,0.1)"}</td>
154
154
<td>Color for the grid lines in the graph.</td>
155
155
</tr>
156
156
<tr>
157
-
<th>textColor</th>
157
+
<td>textColor</td>
158
158
<td>"rgba(255,255,255,0.8)"</td>
159
159
<td>{textColor: "rgba(255,255,255,0.8)"}</td>
160
160
<td>Color for the texts in the graph.</td>
161
161
</tr>
162
162
<tr>
163
-
<th>lineColor</th>
163
+
<td>lineColor</td>
164
164
<td>"rgb(255,255,255)"</td>
165
165
<td>{lineColor: "rgb(255,255,255)"}</td>
166
166
<td>Color for the plotted line in the graph.</td>
167
167
</tr>
168
168
<tr>
169
-
<th>nodeColor</th>
169
+
<td>nodeColor</td>
170
170
<td>{backgroundColor}</td>
171
171
<td>{nodeColor: "black"}</td>
172
172
<td>Color for each node on the plotted line in the graph.</td>
173
173
</tr>
174
174
<tr>
175
-
<th>nodeStroke</th>
175
+
<td>nodeStroke</td>
176
176
<td>{lineColor}</td>
177
177
<td>{nodeStroke: "white"}</td>
178
178
<td>Stroke Color for each node on the plotted line in the graph.</td>
179
179
</tr>
180
180
<tr>
181
-
<th>precision</th>
181
+
<td>precision</td>
182
182
<td>1</td>
183
183
<td>{precision: 2}</td>
184
184
<td>Number of decimals of each value plotted.</td>
185
185
</tr>
186
186
<tr>
187
-
<th>prefix</th>
187
+
<td>prefix</td>
188
188
<td>""</td>
189
189
<td>{prefix: "$"}</td>
190
190
<td>A string to prepends at the beginning of each value plotted.</td>
191
191
</tr>
192
192
<tr>
193
-
<th>suffix</th>
193
+
<td>suffix</td>
194
194
<td>""</td>
195
195
<td>{suffix: "km/h"}</td>
196
196
<td>A string to append at the end of each value plotted.</td>
197
197
</tr>
198
198
<tr>
199
-
<th>horizontalGrids</th>
199
+
<td>horizontalGrids</td>
200
200
<td>5</td>
201
201
<td>{horizontalGrids: 10}</td>
202
202
<td>Number of horizontal grid lines to display.</td>
203
203
</tr>
204
204
<tr>
205
-
<th>showHorizontalGrids</th>
205
+
<td>showHorizontalGrids</td>
206
206
<td>true</td>
207
207
<td>{showHorizontalGrids: true}</td>
208
208
<td>Show or hide horizontal grid lines on the graph.</td>
209
209
</tr>
210
210
<tr>
211
-
<th>showVerticalGrids</th>
211
+
<td>showVerticalGrids</td>
212
212
<td>false</td>
213
213
<td>{showVerticalGrids: true}</td>
214
214
<td>Show or hide vertical grid lines on the graph.</td>
215
215
</tr>
216
216
<tr>
217
-
<th>showYAxisLabel</th>
217
+
<td>showYAxisLabel</td>
218
218
<td>true</td>
219
219
<td>{showYAxisLabel: true}</td>
220
220
<td>Show or hide YAxis Labels on the graph.</td>
221
221
</tr>
222
222
<tr>
223
-
<th>showXAxisLabel</th>
223
+
<td>showXAxisLabel</td>
224
224
<td>true</td>
225
225
<td>{showXAxisLabel: true}</td>
226
226
<td>Show or hide XAxis Labels on the graph.</td>
227
227
</tr>
228
228
<tr>
229
-
<th>showInlineLabel</th>
229
+
<td>showInlineLabel</td>
230
230
<td>false</td>
231
231
<td>{showInlineLabel: true}</td>
232
232
<td>Show or hide inline Labels on each node of the graph.</td>
233
233
</tr>
234
234
<tr>
235
-
<th>inlineLabelColor</th>
235
+
<td>inlineLabelColor</td>
236
236
<td>{textColor}</td>
237
237
<td>{inlineLabelColor: "gray"}</td>
238
238
<td>Color of the inline Labels on each node of the graph.</td>
239
239
</tr>
240
240
<tr>
241
-
<th>showInlineLabelValueOnly</th>
241
+
<td>showInlineLabelValueOnly</td>
242
242
<td>false</td>
243
243
<td>{showInlineLabelValueOnly: true}</td>
244
244
<td>Show or hide graph labels for inline Label values (<b>false</b> Label 1: $20.00 | <b>true</b> $20.00).</td>
245
245
</tr>
246
246
<tr>
247
-
<th>enableOptionDropdown</th>
247
+
<td>enableOptionDropdown</td>
248
248
<td>true</td>
249
249
<td>{enableOptionDropdown: true}</td>
250
250
<td>Enable or disable the graph option dropdown menu.</td>
251
251
</tr>
252
252
<tr>
253
-
<th>dropdownOptions</th>
253
+
<td>dropdownOptions</td>
254
254
<td>"ALL"</td>
255
255
<td>
256
256
<pre>{
@@ -259,24 +259,24 @@ and examples.
259
259
"JSON | Download as Json file",
260
260
"CSV | Download as CSV file"
261
261
]
262
-
}
262
+
}</pre>
263
263
</td>
264
264
<td>Enable specific option in the dropdown menu by specifying it in an array of string (["IMAGE","JSON","CSV"]) the label after the pipe character (|) is optional.</td>
0 commit comments