0

如何在markerConfig配置中创建自定义散点类型?

例如,这是圆形散点图:

series: {
        type: 'scatter',
        xField: 'x',
        yField: 'y',
        markerConfig: {
                type: 'circle',
                fill: '#000',
                radius: 5
        }
}

我需要三角形散射。所以,当我使用下面的代码时:

markerConfig: {
        type: 'path',
        fill: '#000',
        path: [M,100,100,L,300,100,L,200,300,z]
}

我收到了这个错误:

Error: M is not defined

或使用路径:[100,100,300,100,200,300]

Error: Ext.chart.Shape[type] is not a function

SVG 三角形示例在这里: http ://www.w3.org/TR/SVG/paths.html#PathData

先感谢您

4

0 回答 0