简体   繁体   中英

Change Vertical Line and Color bar chart in bar chart.js

在此处输入图像描述

help me ! how to delete numeric data on the bar chart in bar chartjs

    let datas_1 = [97,70,87,43,35,18];
    let colorHex_1 = ['#ebeef3','#ebeef3','#ebeef3','#ebeef3','#ebeef3','#ebeef3'];
    let labels_1 = ['10대','12대','30대','40대','50대','60대이상'];
    var myBarChart = new Chart(ctx_1, {
        type: 'horizontalBar',
        data: {
            datasets: [{
                data: datas_1 ,
                backgroundColor: colorHex_1,
                borderWidth: 0,
                barPercentage: 1,
            }],
            labels: labels_1,
        },
        options: {
            responsive: true,
            legend: {
                display:false,
            },
            scales: {
                xAxes: [{
                    display:false,
                }],
                yAxes: [{
                    gridLines:{
                        display:false,
                        color: "black"
                    },
                    maxBarThickness: 20,
                }]
            }
        }
    });


how to delete numeric data on the bar chart in bar chart.js

Working Demo: https://jsfiddle.net/usmanmunir/hz3gLj19/3/

Try this code:

let datas_1 = [97,70,87,43,35,18];
let colorHex_1 = ['#ebeef3', '#ebeef3', '#ebeef3', '#ebeef3', '#ebeef3', '#ebeef3'];
let labels_1 = ['10대', '12대', '30대', '40대', '50대', '60대이상'];

var ctx = document.getElementById("myChart");

var myBarChart = new Chart(ctx, {
  type: 'horizontalBar',
  data: {
    datasets: [{
      data: datas_1,
      backgroundColor: colorHex_1,
      borderWidth: 0,
      barPercentage: 1,
    }],
    labels: labels_1,
  },
  options: {
    responsive: true,
    legend: {
      display: false,
    },
    scales: {
      xAxes: [{
        display: false,
      }],
      yAxes: [{
        gridLines: {
          display: false,
        },
        maxBarThickness: 20,
      }]
    }
  }
});

Hope this helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM