Path Geometry 有哪些功能?
path 几何图形特殊的配置项(应当同时适用于 line 几何图形):
[ ] 是否连接空值(connectNulls)
[ ] 单个孤立数据点是否展示(showSinglePoint)
其他的基本不变
类型
export type PathGeometryOption = GeometryOption & {
/**
* 是否连接空值
*/
readonly connectNulls?: boolean;
/**
* 单个孤立数据点是否展示
*/
readonly showSinglePoint?: boolean;
};
export type LineGeometryOption = PathGeometryOption & {
/** 是否对数据进行排序, 默认关闭 */
sortable?: boolean;
};