Widgets / directory

Chart widget

What it does

Streaming line chart bound to one virtual pin. The canvas keeps a ring buffer of the most recent samples; historical backfill is fetched separately.

Pins

  • Semantics: Single virtual pin (V1..V127)
  • Reads from one virtual pin, V1..V127.
  • Default size: 6 x 3

Config fields

FieldTypeDefaultEffect
minnumberY-axis lower bound; auto when empty.
maxnumberY-axis upper bound; auto when empty.
pointsnumber100Ring buffer depth.
flowselect (right / left)rightNew-sample insertion side.
showLegendbooleantrueShows the legend chip.
fillbooleanfalseFills the area under the line.
colorcolorLine color.

Typical use

firmware.ino
void loop() {  float value = readCurrent();  Blynk.virtualWrite(V4, value);}

iOS app

Partial — iOS SuperChart adds multi-stream + period selectors beyond the canvas tile.

See also

Related widgets