如图所示,我想在我的产品中添加一个这样的图表,pv用折线图展示 uv用柱状图展示,应该如何实现?
一开始以为你是希望做一个双轴图,仔细看了后发现并不是。双轴图会在图的左右两边各有一个坐标轴,而你真正的需求是组合图,在一个坐标系中渲染多组系列。
并不是所有的图表库都支持多系列绘图,这里我使用VChart为例:
指定两个系列分别是bar和line,图表类型选择common
即可。
const spec = {
type: 'common',
seriesField: 'color',
data: [{
id: 'id0',
values: [{
x: 'Monday',
type: 'Breakfast',
y: 15
},
{
x: 'Monday',
type: 'Lunch',
y: 25
},
{
x: 'Tuesday',
type: 'Breakfast',
y: 12
},
{
x: 'Tuesday',
type: 'Lunch',
y: 30
},
{
x: 'Wednesday',
type: 'Breakfast',
y: 15
},
{
x: 'Wednesday',
type: 'Lunch',
y: 24
},
{
x: 'Thursday',
type: 'Breakfast',
y: 10
},
{
x: 'Thursday',
type: 'Lunch',
y: 25
},
{
x: 'Friday',
type: 'Breakfast',
y: 13
},
{
x: 'Friday',
type: 'Lunch',
y: 20
},
{
x: 'Saturday',
type: 'Breakfast',
y: 10
},
{
x: 'Saturday',
type: 'Lunch',
y: 22
},
{
x: 'Sunday',
type: 'Breakfast',
y: 12
},
{
x: 'Sunday',
type: 'Lunch',
y: 19
}]
},
{
id: 'id1',
values: [{
x: 'Monday',
type: 'Drinks',
y: 22
},
{
x: 'Tuesday',
type: 'Drinks',
y: 43
},
{
x: 'Wednesday',
type: 'Drinks',
y: 33
},
{
x: 'Thursday',
type: 'Drinks',
y: 22
},
{
x: 'Friday',
type: 'Drinks',
y: 10
},
{
x: 'Saturday',
type: 'Drinks',
y: 30
},
{
x: 'Sunday',
type: 'Drinks',
y: 50
}]
}],
series: [{
type: 'bar',
dataIndex: 0,
label: {
visible: true
},
seriesField: 'type',
dataIndex: 0,
xField: ['x', 'type'],
yField: 'y'
},
{
type: 'line',
dataIndex: 1,
label: {
visible: true
},
seriesField: 'type',
xField: 'x',
yField: 'y',
stack: false
}],
axes: [{
orient: 'left'
},
{
orient: 'bottom',
label: {
visible: true
},
type: 'band'
}],
legends: {
visible: true,
orient: 'bottom'
}
};
Demo: https://visactor.io/vchart/demo/combination/single-region?key...
Common Chart option:https://visactor.io/vchart/option/commonChart
github:https://github.com/VisActor/VChart
Series tutorials: https://visactor.io/vchart/guide/tutorial_docs/Chart_Concepts...
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答5.2k 阅读✓ 已解决
1 回答3.4k 阅读✓ 已解决
3 回答2.4k 阅读✓ 已解决
echarts 示例: