xile611

Results 24 issues of xile611

## 1. 进度条的实现方式需要重构 现在进度条和背景条的宽度是一样,通过往左偏移实现进度条的效果 ![img_v3_02as_9f5138be-3b23-4d3a-9490-2fc43d7fbeag](https://github.com/VisActor/VChart/assets/6111424/b5a23bd6-2309-4ec5-a36d-c76f076256f3) 带来的问题: * 当使用`extension-mark`在终点绘制节点的时候,动画不一致 ``` const spec4 = { type: 'linearProgress', tooltip: { visible: false }, data: [ { id: 'id0', values: [ { type: 'Tradition...

### What problem does this feature solve? ``` const spec = { type: 'line', data: { values: [ { time: '2:00', value: 38 }, { time: '4:00', value: 56 },...

1. 主题相关教程补充vchart-theme github地址 2. 补充vchart-theme贡献文档 https://github.com/VisActor/vchart-theme

1. 实现条形图 2. 交互细节如下: demo中用到的数据参考如下: ``` [{ "x": "北京", "y": 3080, "type": "top1" }, { "x": "天津", "y": 2880, "type": "top2" }, { "x": "重庆", "y": 880, "type": "top3" },...

good first issue
demos

![Y2ZJbcjuDl](https://github.com/VisActor/VChart/assets/6111424/28f176a8-e7f7-44f7-8cef-2bf088e666c1)

good first issue
demos

1. 实现如下漏斗图 2. 交互状态效果如下 demo中用到的数据如下 ``` [{ "label": "进入直播间人数", "value": 10000, "attach": "万", "average": 2000 }, { "label": "商品曝光人数", "value": 9000, "attach": "万", "average": 1000 }, { "label": "商品点击人数", "value":...

good first issue
demos

### What problem does this feature solve? ### What does the proposed API look like? ``` interface IHistogramChartSpec { barPadding?: number; } ```

good first issue

### What problem does this feature solve? 漏斗图有一些常见的样式,可以考虑沉淀到模板中 ### What does the proposed API look like? 箭头可以考虑沉淀一些常见的布局算法: ``` export type Arrow = { /** * @en Arrow from * @version...

template
up for grabs

### What problem does this feature solve? 问题: 现在tooltip实现自定义内容的成本过高 1. 支持配置tooltip content对应的字段 2. 支持配置tooltip key 对应的内容 ``` const spec = { type: 'bar', data: [ { id: 'barData', values: [...

* class增加vchart前缀 * 样式覆盖问题 ![5yp72ffQ3V](https://github.com/VisActor/VChart/assets/6111424/48e057f4-1875-43be-bebf-4eb41b9317e4)