echarts伪3d制作

<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <meta http-equiv="X-UA-Compatible" content="IE=edge">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Document</title>

  <script src="https://cdn.jsdelivr.net/npm/echarts@5.1.0/dist/echarts.min.js"></script>

</head>

<body style="background: rgb(0,32,46);">

  <div id="main" style="width: 1100px;height: 500px;border:1px solid red"> </div>

</body>

<script>

  var myChart = echarts.init(document.getElementById('main'));

  //左侧图形的坐标图

  const CubeLeft = echarts.graphic.extendShape({

    shape: {

      x: 0,

      y: 0,

    },

    buildPath: function (ctx, shape) {

      const xAxisPoint = shape.xAxisPoint;

      const c0 = [shape.x, shape.y];

      const c1 = [shape.x - 9, shape.y - 9];

      const c2 = [xAxisPoint[0] - 9, xAxisPoint[1] - 9];

      const c3 = [xAxisPoint[0], xAxisPoint[1]];

      ctx

        .moveTo(c0[0], c0[1])

        .lineTo(c1[0], c1[1])

        .lineTo(c2[0], c2[1])

        .lineTo(c3[0], c3[1])

        .closePath();

    },

  });

  //右侧图形的坐标图

  const CubeRight = echarts.graphic.extendShape({

    shape: {

      x: 0,

      y: 0,

    },

    buildPath: function (ctx, shape) {

      const xAxisPoint = shape.xAxisPoint;

      const c1 = [shape.x, shape.y];

      const c2 = [xAxisPoint[0], xAxisPoint[1]];

      const c3 = [xAxisPoint[0] + 18, xAxisPoint[1] - 9];

      const c4 = [shape.x + 18, shape.y - 9];

      ctx

        .moveTo(c1[0], c1[1])

        .lineTo(c2[0], c2[1])

        .lineTo(c3[0], c3[1])

        .lineTo(c4[0], c4[1])

        .closePath();

    },

  });

  //顶部图形的坐标图

  const CubeTop = echarts.graphic.extendShape({

    shape: {

      x: 0,

      y: 0,

    },

    buildPath: function (ctx, shape) {

      const c1 = [shape.x, shape.y];

      const c2 = [shape.x + 18, shape.y - 9];

      const c3 = [shape.x + 9, shape.y - 18];

      const c4 = [shape.x - 9, shape.y - 9];

      ctx

        .moveTo(c1[0], c1[1])

        .lineTo(c2[0], c2[1])

        .lineTo(c3[0], c3[1])

        .lineTo(c4[0], c4[1])

        .closePath();

    },

  });

  echarts.graphic.registerShape("CubeLeft", CubeLeft);

  echarts.graphic.registerShape("CubeRight", CubeRight);

  echarts.graphic.registerShape("CubeTop", CubeTop);

  const MAX = [

    6000, 6000, 6000, 6000, 6000, 5000, 4000, 3000, 2000, 4000, 3000, 2000,

  ];

  const VALUE = [

    2012, 1230, 3790, 2349, 1654, 1230, 3790, 2349, 1654, 3790, 2349, 1654,

  ];

  option = {

    backgroundColor: "#012366",

    title: {

      text: "",

      top: 32,

      left: 18,

      textStyle: {

        color: "#00F6FF",

        fontSize: 24,

      },

    },

    grid: {

      left: 20,

      right: 40,

      bottom: "19%",

      top: 107,

      containLabel: true,

    },

    xAxis: {

      type: "category",

      data: [

        "德州",

        "德城区",

        "陵城区",

        "禹城市",

        "乐陵市",

        "临邑县",

        "平原县",

        "夏津县",

        "武城县",

        "庆云县",

        "宁津县",

        "齐河县",

      ],

      axisLine: {

        show: true,

        lineStyle: {

          color: "white",

        },

      },

      offset: 20,

      axisTick: {

        show: false,

        length: 9,

        alignWithLabel: true,

        lineStyle: {

          color: "#7DFFFD",

        },

      },

      axisLabel: {

        fontSize: 10,

      },

    },

    yAxis: {

      type: "value",

      axisLine: {

        show: true,

        lineStyle: {

          color: "white",

        },

      },

      splitLine: {

        show: false,

      },

      axisTick: {

        show: false,

      },

      axisLabel: {

        fontSize: 16,

      },

      boundaryGap: ["20%", "20%"],

    },

    series: [

      {

        //无颜色柱子部分

        type: "custom",

        renderItem: function (params, api) {

          const location = api.coord([api.value(0), api.value(1)]);

          return {

            type: "group",

            children: [

              {

                type: "CubeLeft",

                shape: {

                  api,

                  xValue: api.value(0),

                  yValue: api.value(1),

                  x: location[0],

                  y: location[1],

                  xAxisPoint: api.coord([api.value(0), 0]),

                },

                style: {

                  fill: "rgba(47,102,192,.27)",

                },

              },

              {

                type: "CubeRight",

                shape: {

                  api,

                  xValue: api.value(0),

                  yValue: api.value(1),

                  x: location[0],

                  y: location[1],

                  xAxisPoint: api.coord([api.value(0), 0]),

                },

                style: {

                  fill: "rgba(59,128,226,.27)",

                },

              },

              {

                type: "CubeTop",

                shape: {

                  api,

                  xValue: api.value(0),

                  yValue: api.value(1),

                  x: location[0],

                  y: location[1],

                  xAxisPoint: api.coord([api.value(0), 0]),

                },

                style: {

                  fill: "rgba(72,156,221,.27)",

                },

              },

            ],

          };

        },

        data: MAX,

      },

      {

        //有颜色部分的柱子

        type: "custom",

        renderItem: (params, api) => {

          const location = api.coord([api.value(0), api.value(1)]);

          return {

            type: "group",

            children: [

              {

                type: "CubeLeft",

                shape: {

                  api,

                  xValue: api.value(0),

                  yValue: api.value(1),

                  x: location[0],

                  y: location[1],

                  xAxisPoint: api.coord([api.value(0), 0]),

                },

                style: {

                  fill: new echarts.graphic.LinearGradient(0, 0, 0, 1, [

                    {

                      offset: 0,

                      color: "#3B80E2",

                    },

                    {

                      offset: 1,

                      color: "#49BEE5",

                    },

                  ]),

                },

              },

              {

                type: "CubeRight",

                shape: {

                  api,

                  xValue: api.value(0),

                  yValue: api.value(1),

                  x: location[0],

                  y: location[1],

                  xAxisPoint: api.coord([api.value(0), 0]),

                },

                style: {

                  fill: new echarts.graphic.LinearGradient(0, 0, 0, 1, [

                    {

                      offset: 0,

                      color: "#3B80E2",

                    },

                    {

                      offset: 1,

                      color: "#49BEE5",

                    },

                  ]),

                },

              },

              {

                type: "CubeTop",

                shape: {

                  api,

                  xValue: api.value(0),

                  yValue: api.value(1),

                  x: location[0],

                  y: location[1],

                  xAxisPoint: api.coord([api.value(0), 0]),

                },

                style: {

                  fill: new echarts.graphic.LinearGradient(0, 0, 0, 1, [

                    {

                      offset: 0,

                      color: "#3B80E2",

                    },

                    {

                      offset: 1,

                      color: "#49BEE5",

                    },

                  ]),

                },

              },

            ],

          };

        },

        data: VALUE,

      },

      {

        type: "bar",

        label: {

          normal: {

            show: true,

            position: "top",

            formatter: (e) => {

              switch (e.name) {

                case "10kV线路":

                  return VALUE[0];

                case "公用配变":

                  return VALUE[1];

                case "35kV主变":

                  return VALUE[2];

                case "水":

              }

            },

            fontSize: 16,

            color: "#fff",

            offset: [4, -25],

          },

        },

        itemStyle: {

          color: "transparent",

        },

        data: MAX,

      },

    ],

  };

  myChart.setOption(option);

</script>

</html>

详情请见PPChart - 让图表更简单

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值