Echarts可视化教程

  1. 网站首页
  2. 百度ECharts
  3. ECharts实例
  4. ECharts入门
  5. 地图大全
  6. ECharts官网

Chartjs图表之散点图

const ctx = document.getElementById('myChart');
const data = {
  datasets: [{
    label: '散点图实例',
    data: [{
      x: -10,
      y: 0
    }, {
      x: 0,
      y: 60
    }, {
      x: 15,
      y: 5
    }, {
      x: 1.5,
      y: 15.5
    }, {
      x: 0.5,
      y: 5.5
    }],
    backgroundColor: 'rgb(255, 99, 132)'
  }],
};
const config = {
  type: 'scatter',
  data: data,
  options: {
    responsive: true, // 设置图表为响应式,根据屏幕窗口变化而变化
    maintainAspectRatio: false,// 保持图表原有比例
    scales: {
      x: {
        type: 'linear',
        position: 'bottom'
      }
    },
    plugins: {
      legend: {
        display: false
      }
    }
  }
};
const myChart = new Chart(ctx, config);

点击运行 》

点击展开全文

相关文章

  1. Highcharts图表之散点图
  2. Chartjs图表之雷达图
  3. Chartjs图表之极地图
  4. Chartjs图表之混合图系列
  5. Chartjs图表如何隐藏标题栏