blob: 0153ca2029e1c37ee47b3d4e31b95a7793308da8 [file] [log] [blame]
/*
title: 3D Bar with Dataset
category: bar3D
titleCN: 使用 dataset 为三维柱状图设置数据
*/
$.get(
ROOT_PATH + '/data/asset/data/life-expectancy-table.json',
function (data) {
option = {
grid3D: {},
tooltip: {},
xAxis3D: {
type: 'category'
},
yAxis3D: {
type: 'category'
},
zAxis3D: {},
visualMap: {
max: 1e8,
dimension: 'Population'
},
dataset: {
dimensions: [
'Income',
'Life Expectancy',
'Population',
'Country',
{ name: 'Year', type: 'ordinal' }
],
source: data
},
series: [
{
type: 'bar3D',
// symbolSize: symbolSize,
shading: 'lambert',
encode: {
x: 'Year',
y: 'Country',
z: 'Life Expectancy',
tooltip: [0, 1, 2, 3, 4]
}
}
]
};
myChart.setOption(option);
}
);