【echarts】甘特图

javascript 复制代码
const milestones = [
    { progress: 100, milestoneName: '阶段一', startDate: '2020-12-23', endDate: '2021-01-30' },
    { progress: 100, milestoneName: '阶段二', startDate: '2021-01-15', endDate: '2021-03-15' },
    { progress: 100, milestoneName: '阶段三', startDate: '2021-03-10', endDate: '2021-04-05' },
    { progress: 94, milestoneName: '阶段四', startDate: '2021-04-06', endDate: '2021-04-29' },
    { progress: 0, milestoneName: '阶段五', startDate: '2021-04-30', endDate: '2021-05-03' },
];

const colors = [
'#f19489',
'#bb8fce',
'#85c1e9',
'#76d7c3',
'#81e0aa',
'#f7dc6f',
'#e59865'
]

const categories = milestones.map(milestone => milestone.milestoneName);
const data = milestones.map((milestone, index) => {
    const startTime = new Date(milestone.startDate).getTime();
    const endTime = new Date(milestone.endDate).getTime();
    const duration = endTime - startTime;
    
    return {
        name: milestone.milestoneName,
        value: [
            index,         // category index
            startTime,     // start time
            endTime,       // end time
            duration       // duration in milliseconds
        ],
        itemStyle: {
            normal: {
                color: colors[index]
            }
        }
    };
});

function renderItem(params, api) {
    const categoryIndex = api.value(0);
    const start = api.coord([api.value(1), categoryIndex]);
    const end = api.coord([api.value(2), categoryIndex]);
    const height = api.size([0, 1])[1] * 0.6;

    const rectShape = echarts.graphic.clipRectByRect({
        x: start[0],
        y: start[1] - height / 2,
        width: end[0] - start[0],
        height: height
    }, {
        x: params.coordSys.x,
        y: params.coordSys.y,
        width: params.coordSys.width,
        height: params.coordSys.height
    });

    return rectShape && {
        type: 'rect',
        shape: rectShape,
        style: api.style()
    };
}

option = {
    tooltip: {
        formatter: function (params) {
            return params.marker + params.name + ': ' + (params.value[3] / 1000 / 60 / 60 / 24).toFixed(1) + ' days';  // converting ms to days
        }
    },
    dataZoom: [{
        type: 'slider',
        filterMode: 'weakFilter',
        showDataShadow: false,
        top: 400,
        height: 10,
        borderColor: 'transparent',
        backgroundColor: '#e2e2e2',
        handleIcon: 'M10.7,11.9H9.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z', // jshint ignore:line
        handleSize: 20,
        handleStyle: {
            shadowBlur: 6,
            shadowOffsetX: 1,
            shadowOffsetY: 2,
            shadowColor: '#aaa'
        },
        labelFormatter: ''
    }, {
        type: 'inside',
        filterMode: 'weakFilter'
    }],
    grid: {
        height: 300
    },
    xAxis: {
        type: 'time',
        axisLabel: {
            formatter: function (val) {
                return new Date(val).toLocaleDateString();
            }
        }
    },
    yAxis: {
        type: 'category',
        data: categories
    },
    series: [{
        type: 'custom',
        renderItem: renderItem,
        encode: {
            x: [1, 2],
            y: 0
        },
        data: data
    }]
};
相关推荐
这里有鱼汤几秒前
做量化没有实时数据怎么行?我找到一个超级好用的Python库,速度还贼快!
前端·后端·python
zhu12893035565 分钟前
基于Rust与WebAssembly实现高性能前端计算
前端·rust·wasm
耶啵奶膘5 分钟前
uni-app:firstUI框架的选择器Select改造,添加一个搜索的插槽
前端·uni-app
旧识君10 分钟前
前端图片压缩实战:基于compressorjs的高效解决方案
前端·javascript·vue.js
爱上大树的小猪17 分钟前
【前端安全】模板字符串动态拼接HTML的防XSS完全指南
前端·安全·html
这里有鱼汤35 分钟前
你以为 Socket 只能做聊天室?揭秘 Python 网络编程的 8 种硬核用法
前端·后端·python
uhakadotcom37 分钟前
Wolfram.com:解锁计算技术和知识管理的强大工具
前端·面试·github
skyseey42 分钟前
笔记:Vue3+Vite 怎么导入静态资源,比如图片/组件
前端·javascript·笔记
清风细雨_林木木42 分钟前
Vue 中 this.$emit(“update:xx“,value) 和 :xx.sync 实现同步数据的做法
前端·javascript·vue.js
沐土Arvin1 小时前
Nginx 核心配置详解与性能优化最佳实践
运维·开发语言·前端·nginx·性能优化