VueUiTableHeatmap
- Added optional datapoint attributes to be passed in the dataset to display shapes and colors:
const dataset = [
{
name: "Serie 1",
values: [1, 2, 3, 4],
color: "#6376DD",
shape: "star" // "circle", "triangle", "square", "diamond", "pentagon", "hexagon", "star"
},
...
]
- Also added
config.style.shapeSize
(default: 14) to control... shape sizing.