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
Copy file name to clipboardExpand all lines: docs/quick_start.rst
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -32,8 +32,12 @@ could vary. This allows us to have more than 1 plot at the same time in the scre
32
32
Every one of them with different characteristics or graphs.
33
33
34
34
Options available are:
35
+
* width: width of the plot area
36
+
* height: height of the plot area
35
37
* backround_color: Allows to change the background color. The default is black.
36
38
* box_color: Allows to change the box color. Default is white.
39
+
* padding: allows the user to give the plot area a pad. This is helpful if you are planning to include text and legends in the axes.
40
+
* scale: scale of the plot.
37
41
38
42
We tell the microcontroller to display our plot:
39
43
@@ -375,6 +379,15 @@ Logging
375
379
This is a similar to Cartesian but designed to allow the user to use it as a data logger.
376
380
The user needs to setup manually the range and tick values in order for this graph to work proeprly
377
381
382
+
There are some parameters that you can customize:
383
+
384
+
* rangex and rangey: you need specify the ranges of your graph. This allows you to move your graph according to your needs. This parameters only accept lists
385
+
* ticksx and ticksy: Specific ticks for the X and Y axes
386
+
* line_color: you can specify the color in HEX
387
+
* tick_pos: Allows to show the ticks below the axes.
388
+
* fill: genrates lines under each point, to fill the area under the points
0 commit comments