4.0.2 • Published 8 months ago
vxe-table-plugin-charts v4.0.2
vxe-table-plugin-charts
基于 vxe-table 的图表渲染插件(依赖区域选取功能),基于 echarts 实现
Compatibility
对应 vxe-table v4 版本
Installing
npm install vxe-table@next vxe-table-plugin-charts@next echarts
// ...
import VXETable from 'vxe-table'
import echarts from 'echarts'
import VXETablePluginCharts from 'vxe-table-plugin-charts'
import 'vxe-table-plugin-charts/dist/style.css'
// ...
// 方式1:NPM 安装,注入 echarts 对象
VXETable.use(VXETablePluginCharts, {
echarts
})
// 方式2:CDN 安装,只要确保 window.echarts 存在即可
// VXETable.use(VXETablePluginCharts)
Import on demand
// ...
import echarts from 'echarts/lib/echarts'
import 'echarts/lib/chart/bar'
import 'echarts/lib/chart/pie'
import 'echarts/lib/chart/line'
import 'echarts/lib/component/grid'
import 'echarts/lib/component/tooltip'
import 'echarts/lib/component/legend'
import 'echarts/lib/component/legendScroll'
import VXETablePluginCharts from 'vxe-table-plugin-charts'
import 'vxe-table-plugin-charts/dist/style.css'
// ...
VXETable.use(VXETablePluginCharts, {
echarts
})
API
Context menu codes
code 编码 | describe 描述 | params 参数 |
---|---|---|
CHART_BAR_X_AXIS | 横向柱状图(如果设置了类别 category 则 series 至少一列,否则 series 至少两列) | {category?: field} |
CHART_BAR_Y_AXIS | 纵向柱状图(如果设置了类别 category 则 series 至少一列,否则 series 至少两列) | {category?: field} |
CHART_LINE | 折线图(如果设置了类别 category 则 series 至少一列,否则 series 至少两列) | {category?: field} |
CHART_PIE | 饼图(如果设置了类别 category 则 series 只需一列,否则 series 需要两列) | {category?: field} |
Demo
<vxe-table
height="500"
:data="tableData"
:mouse-config="{ area: true }"
:menu-config="menuConfig"
:edit-config="{trigger: 'dblclick', mode: 'cell'}">
<vxe-column type="seq" width="60"></vxe-column>
<vxe-column field="nickname" title="Nickname" :edit-render="{name: 'input'}"></vxe-column>
<vxe-column field="sex" title="sex" :edit-render="{name: 'input'}"></vxe-column>
<vxe-column field="age" title="Age" :edit-render="{name: 'input'}"></vxe-column>
<vxe-column field="rate" title="Rate" :edit-render="{name: 'input'}"></vxe-column>
</vxe-table>
export default {
data () {
return {
tableData: [
{ id: 100, name: 'Test1', nickname: 'Nickname1', sex: '1', age: 26, rate: '3' },
{ id: 100, name: 'Test2', nickname: 'Nickname2', sex: '0', age: 28, rate: '5' }
],
menuConfig: {
body: {
options: [
{ code: 'CHART_LINE', name: '折线图' }
]
}
}
}
}
}
License
MIT © 2019-present, Xu Liangzhan
3.3.3
8 months ago
3.3.2
9 months ago
4.0.2
1 year ago
4.0.1
1 year ago
3.3.1
1 year ago
3.3.0
1 year ago
4.0.0
1 year ago
1.9.0
2 years ago
1.8.0
2 years ago
3.0.4
2 years ago
3.1.0
2 years ago
3.0.3
3 years ago
3.0.2
4 years ago
1.7.2
4 years ago
1.7.1
4 years ago
1.7.0
4 years ago
3.0.1
4 years ago
3.0.0-beta.1
4 years ago
3.0.0-beta.0
4 years ago
3.0.0-beta.2
4 years ago
3.0.0-alpha.1
4 years ago
3.0.0-alpha.2
4 years ago
3.0.0
4 years ago
1.6.3
5 years ago
1.6.2
5 years ago
1.6.1
5 years ago
1.6.0
5 years ago
3.0.0-alpha.0
5 years ago
1.5.3
5 years ago
1.5.2
5 years ago
1.5.1
5 years ago
1.5.0
5 years ago
1.3.0
5 years ago
1.2.3
5 years ago
1.2.1
5 years ago
1.2.0
5 years ago
1.1.4
5 years ago
1.1.3
5 years ago
1.1.2
5 years ago
1.1.1
6 years ago
1.1.0
6 years ago
1.0.7
6 years ago
1.0.6
6 years ago
1.0.5
6 years ago
1.0.4
6 years ago
1.0.3
6 years ago
1.0.2
6 years ago
1.0.1
6 years ago
1.0.0
6 years ago
1.0.0-beta.3
6 years ago
1.0.0-beta.2
6 years ago
1.0.0-beta.1
6 years ago