添加两个折线图
选中可视化插件“Graph”后,添加两个Query
-- 折线1 - Query A
SELECT
$__time(date),
'有效算力' as metric,
quality_adj_power as value
FROM
analyse_miner_efficient_daily
where
miner = '$Actor' and
$__timeFilter(date)
order by date
-- 折线2 - Query B
SELECT
$__time(date),
'每日封装算力' as metric,
increased_sector_count*sector_size as value
FROM
analyse_miner_efficient_daily
where miner = '$Actor'and
$__timeFilter(date)
order by date
添加两条线后的效果如下图
这个时候,我们想要把“每日封装算力”转化成柱状图。
Graph双折线的情况下,将其中一个展示为柱状
在右侧panel找到“Series overrides”区域
添加系列,选中“每日封装算力”,按下列操作顺序操作
操作1:
操作2:
操作3:
操作4:
最后看下效果