The SymbolStyle component allows to select the style for symbols in a plot.
The enum ./src/components/symbolStyle/symbolStyle.js provides predefined style options, that are used with the JavaScript attribute 'value' (also see below).
./src/components/symbolStyle/treezSymbolStyle.js
./test/components/symbolStyle/treezSymbolStyle.test.js
./demo/components/symbolStyle/treezSymbolStyleDemo.html
...
sectionContent.append('treez-symbol-style')
.label('Symbol style:')
.value('cross')
.bindValue(this, () => this.symbolStyle);
...
Returns the current symbol style as enum value. In order to set the value, you can either use an enum value or a string value (= name of SymbolStyle).
Also see the attributes that are inherited from LabeledTreezElement.
The name of the SymbolStyle.
Also see the attributes that are inherited from LabeledTreezElement.