如何更改散点图中点的形状?
How can I change the shape of points in a scatter chart?
我正在使用 LightningChartJS 创建散点图。
有没有一种方法可以添加自定义形状或图像作为点 shape.say 也许是小 images/icons 的笔记本电脑和智能手机而不是正方形或圆形?
const smartPhonesSeries = chart.addPointSeries({ pointShape: PointShape.Circle })
const laptopsSeries = chart.addPointSeries({ pointShape: PointShape.Square })
const laptopsSeries = chart.addPointSeries({ pointShape: PointShape.Square })
PointSeries 仅支持 PointShape 枚举中列出的形状。
截至目前,LCJS 加速渲染不支持渲染任何自定义图像。
我正在使用 LightningChartJS 创建散点图。 有没有一种方法可以添加自定义形状或图像作为点 shape.say 也许是小 images/icons 的笔记本电脑和智能手机而不是正方形或圆形?
const smartPhonesSeries = chart.addPointSeries({ pointShape: PointShape.Circle })
const laptopsSeries = chart.addPointSeries({ pointShape: PointShape.Square })
const laptopsSeries = chart.addPointSeries({ pointShape: PointShape.Square })
PointSeries 仅支持 PointShape 枚举中列出的形状。
截至目前,LCJS 加速渲染不支持渲染任何自定义图像。