BlockScout 5.1.0 交易历史记录图表配置文件
时间: 2024-02-20 22:00:04 浏览: 134
BlockScout 5.1.0交易历史记录图表可以使用不同类型的图表进行可视化,以下是一个示例配置文件:
```
{
"type": "line",
"data": {
"labels": ["2022-01-01", "2022-01-02", "2022-01-03", "2022-01-04", "2022-01-05", "2022-01-06", "2022-01-07"],
"datasets": [{
"label": "Transaction Count",
"data": [10, 20, 30, 40, 50, 60, 70],
"fill": false,
"borderColor": "rgb(75, 192, 192)",
"lineTension": 0.1
},
{
"label": "Gas Used",
"data": [100, 200, 300, 400, 500, 600, 700],
"fill": false,
"borderColor": "rgb(192, 75, 192)",
"lineTension": 0.1
}]
},
"options": {
"scales": {
"yAxes": [{
"ticks": {
"beginAtZero": true
}
}]
},
"tooltips": {
"mode": "index",
"intersect": false
},
"hover": {
"mode": "nearest",
"intersect": true
}
}
}
```
该配置文件使用折线图类型,同时绘制了交易数量和Gas使用量两个数据集。数据集中的数据是每天的交易记录,labels数组包含了对应的日期。配置文件中指定了y轴从0开始,同时启用了交互和工具提示功能。
注意,该配置文件仅供参考,具体的配置选项和参数可以根据具体需求进行调整和修改。
阅读全文