2019-12-02 05:58:26 +01:00
# plot Bar Graph
2016-03-26 00:47:20 +01:00
2019-12-02 05:58:26 +01:00
Display a bar graph for a number value.
2016-03-26 00:47:20 +01:00
```sig
led.plotBarGraph(2, 20);
```
2019-12-02 05:58:26 +01:00
A bar graph is a kind of chart that shows numbers as lines with different lengths.
## Parameters
2016-03-26 00:47:20 +01:00
2019-12-02 05:58:26 +01:00
* **value**: a [number ](/types/number ) that is the value of what you
2016-07-18 20:14:51 +02:00
are measuring or trying to show. For example, if you are measuring
2016-11-01 18:42:42 +01:00
the temperature of ice with the @boardname @, ``value`` might be `0`
2019-12-02 05:58:26 +01:00
if the temperature is 0 degrees Celsius.
* **high**: a [number ](/types/number ) that is the highest
possible number (maximum) that the **value** parameter can be. The lines in the bar graph will reach their highest point when **value** reaches this number. If **high** is `0` , then the largest value recently plotted is used as the maximum.
2016-03-26 00:47:20 +01:00
2020-05-08 18:35:38 +02:00
### ~hint
#### Serial Output
The ``||led:plot bar graph||`` block also writes the number from **value** to the [serial ](/reference/serial ) port as a way to help you record
values.
### ~
2019-12-02 05:58:26 +01:00
## Example: chart acceleration
2016-03-26 00:47:20 +01:00
2019-12-02 05:58:26 +01:00
Show a bar graph of the [acceleration ](/reference/input/acceleration )
2016-11-02 01:44:37 +01:00
in the `x` direction of the @boardname @.
The @boardname @'s `x` direction is from left to right (or right to left).
2019-12-02 05:58:26 +01:00
The faster you move the @boardname @ in this direction,
the taller the lines in the bar graph will be. The **high** paramter is `1023` which sets the highest possible value of acceleration to show.
2016-05-24 01:21:08 +02:00
2016-03-26 00:47:20 +01:00
```blocks
basic.forever(() => {
let a = input.acceleration(Dimension.X);
led.plotBarGraph(a, 1023)
})
```
2019-12-02 05:58:26 +01:00
## See also
2016-03-26 00:47:20 +01:00
2016-04-13 17:27:45 +02:00
[brightness ](/reference/led/brightness ), [fade in ](/reference/led/fade-in ), [fade out ](/reference/led/fade-out ), [LED screen ](/device/screen ), [stop animation ](/reference/led/stop-animation )
2016-03-26 00:47:20 +01:00