F2 的支付宝小程序版本,支持原生 F2 的所有功能,欢迎使用反馈。
为了方便使用,我们封装了小程序的自定义组件,故需要支付宝小程序基础库支持自定义组件
重要:版本要求
- 小程序基础库版本 1.7.0 或以上
项目默认初始化出来的是没有package.json
的,需要新增package.json
后再安装
## 没有package.json时执行下面这段
## echo "{}" > package.json
npm install @antv/my-f2 --save
{
"usingComponents": {
"f2": "@antv/my-f2"
}
}
<view class="f2-chart">
<f2 onInit="onInitChart"></f2>
</view>
<button onTap="changeData">改变日期</button>
.f2-chart {
width: 100%;
height: 500rpx;
}
Page({
globalChart: null,
data: {},
onInitChart(F2, config) {
if(!this.globalChart)
this.globalChart = new F2.Chart(config);
const chart = this.globalChart;
const data = [
{ value: 63.4, city: 'New York', date: '2011-10-01' },
{ value: 62.7, city: 'Alaska', date: '2011-10-01' },
{ value: 72.2, city: 'Austin', date: '2011-10-01' },
{ value: 58, city: 'New York', date: '2011-10-02' },
{ value: 59.9, city: 'Alaska', date: '2011-10-02' },
{ value: 67.7, city: 'Austin', date: '2011-10-02' },
{ value: 53.3, city: 'New York', date: '2011-10-03' },
{ value: 59.1, city: 'Alaska', date: '2011-10-03' },
{ value: 69.4, city: 'Austin', date: '2011-10-03' },
];
chart.source(data, {
date: {
range: [0, 1],
type: 'timeCat',
mask: 'MM-DD'
},
value: {
max: 300,
tickCount: 4
}
});
chart.area().position('date*value').color('city').adjust('stack');
chart.line().position('date*value').color('city').adjust('stack');
chart.render();
// 注意:需要把chart return 出来
return chart;
}
changeData() {
if(!this.globalChart)
return
const newData = [
{ value: 163.4, city: 'New York', date: '2011-11-01' },
{ value: 162.7, city: 'Alaska', date: '2011-11-01' },
{ value: 172.2, city: 'Austin', date: '2011-11-01' },
{ value: 158, city: 'New York', date: '2011-11-02' },
{ value: 159.9, city: 'Alaska', date: '2011-11-02' },
{ value: 167.7, city: 'Austin', date: '2011-11-02' },
{ value: 153.3, city: 'New York', date: '2011-11-03' },
{ value: 159.1, city: 'Alaska', date: '2011-11-03' },
{ value: 169.4, city: 'Austin', date: '2011-11-03' },
];
this.globalChart.changeData(newData);
this.globalChart.repaint();
}
});
- F2 API 参见:https://f2.antv.vision/zh/docs/api/f2
如果您在使用的过程中碰到问题,可以先通过 issues 看看有没有类似的 bug 或者建议。