vislite
Version:
灵活、快速、简单的数据可视化交互式跨端前端库
15 lines (14 loc) • 515 B
TypeScript
/**
* 绘图配置相关类型定义
* 定义了绘图相关的枚举类型
*/
/** 圆弧端点类型 */
export type arcCapType = "butt" | "round" | "-round"
/** 文字水平对齐方式 */
export type textAlignType = "left" | "center" | "right"
/** 文字垂直对齐方式 */
export type textBaselineType = "top" | "middle" | "bottom"
/** 线条端点类型 */
export type lineCapType = "butt" | "round" | "square"
/** 线条连接方式 */
export type lineJoinType = "miter" | "bevel" | "round"