web-dev-qa-db-fra.com

Comment supprimer une étiquette carrée de l'info-bulle et afficher ses informations sur une seule ligne?

Comment puis-je supprimer ce carré de l'info-bulle?

 enter image description here

Je préférerais si je pouvais réussir à avoir une ligne comme celle-ci: Février - 2

var data = {
        labels: ['January', 'February', 'March'],
        datasets: [
        {
            data: [1,2,3]
        }
        ]
    };

    var myLineChart = new Chart(document.getElementById('chart'), {
        type: 'line',
        data: data,
        options: {
            legend: {
                display: false
            }
        }
    });
10
Marko

voici:

jsfiddle: http://jsfiddle.net/1v9fy5mz/

code:

html

<canvas id="canvas"></canvas>

js:

var ctx = document.getElementById("canvas").getContext("2d");

var data = {
  labels: ['January', 'February', 'March'],
  datasets: [{
    data: [1, 2, 3]
  }]
};

var myLineChart = new Chart(ctx, {
  type: 'line',
  data: data,
  options: {
    showAllTooltips: true,
    tooltips: {
      custom: function(tooltip) {
        if (!tooltip) return;
        // disable displaying the color box;
        tooltip.displayColors = false;
      },
      callbacks: {
        // use label callback to return the desired label
        label: function(tooltipItem, data) {
          return tooltipItem.xLabel + " :" + tooltipItem.yLabel;
        },
        // remove title
        title: function(tooltipItem, data) {
          return;
        }
      }
    }
  }
});
24
Ahmed Musallam

Ajoutez ceci dans votre objet options

tooltips: {
  displayColors: false
}
7
Seph Cordovano
tooltips: {
      displayColors: false,
      callbacks: {
        // use label callback to return the desired label
        label: function(tooltipItem, data) {
          return tooltipItem.xLabel + " :" + tooltipItem.yLabel;
        },
        // remove title
        title: function(tooltipItem, data) {
          return;

        }
      }
    }
0
mohamed ali