StandardNode: Dial

Dial standard node
extendsNode

let dial = flow.createNode("ui/dial", {
  state: { min: 0, max: 2, value: 0.5 },
});

Default State

{
  value: 0,
  min: 0,
  max: 1
}

Options

{
  height: number;
  dialStyle?: DialStyle;
}