Skip to content

v2.6.41

Compare
Choose a tag to compare
@graphieros graphieros released this 21 Apr 09:40
· 364 commits to master since this release

VueUiMolecule #190

Add an optional color attribute to datapoints, to customize individual datapoint colors.
Setting a color on a node will trickle down the color to its children, unless this children also has a defined color.

type VueUiMoleculeDatasetNode = {
    name: string
    details?: string
    nodes?: VueUiMoleculeDatasetNode[]
    color?: string // new
}