简体   繁体   English

Highcharts:如何根据散点图中Y轴的值范围来增加标记半径?

[英]Highcharts : How to increase marker radius based on the value range in Y axis in Scatter Graph?

I am using multiple series of data to plot the scatter graph..I want to increase the marker radius based on the value of x-axis. 我正在使用多个数据系列来绘制散点图。.我想基于x轴的值来增加标记半径。 How can i achieve it. 我怎样才能做到这一点。

Below is the jsfiddle code 下面是jsfiddle代码

Graph Code 图形代码

 plotOptions: {
    scatter: {
        marker: {
                symbol : 'cricle',
            radius: 5,
            states: {
                hover: {
                    enabled: true,
                    lineColor: 'rgb(100,100,100)'
                }
            }
        },
        states: {
            hover: {
                marker: {
                    enabled: false
                }
            }
        }
    }
},



 series: [{
        name: 'Female',
        color: 'rgba(223, 83, 83, .5)',
        data: [[161.2, 51.6], [167.5, 59.0], [159.5, 49.2], [157.0, 63.0], [155.8, 53.6],
            [170.0, 59.0], [159.1, 47.6]]

}, {
    name: 'Male',
    color: 'rgba(119, 152, 191, .5)',
    data: [[174.0, 65.6], [175.3, 71.8], [193.5, 80.7], [186.5, 72.6], [187.2, 78.8],
        [181.5, 74.8], [184.0, 86.4]]
}]

Simply use bubble series where x-value=z-value: https://jsfiddle.net/BlackLabel/wrgk5c7a/ 只需使用x值= z值的bubble系列: https : //jsfiddle.net/BlackLabel/wrgk5c7a/

Snippet: 片段:

Highcharts.chart('container', {
  chart: {
    type: 'bubble', // bubble series
    zoomType: 'xy'
  },
  title: {
    text: 'Height Versus Weight of 507 Individuals by Gender'
  },
  subtitle: {
    text: 'Source: Heinz  2003'
  },
  xAxis: {
    title: {
      enabled: true,
      text: 'Height (cm)'
    },
    startOnTick: true,
    endOnTick: true,
    showLastLabel: true
  },
  yAxis: {
    title: {
      text: 'Weight (kg)'
    }
  },
  legend: {
    layout: 'vertical',
    align: 'left',
    verticalAlign: 'top',
    x: 100,
    y: 70,
    floating: true,
    backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF',
    borderWidth: 1
  },
  plotOptions: {
    scatter: {
      marker: {
        symbol: 'cricle',
        radius: 5,
        states: {
          hover: {
            enabled: true,
            lineColor: 'rgb(100,100,100)'
          }
        }
      },
      states: {
        hover: {
          marker: {
            enabled: false
          }
        }
      },
      tooltip: {
        headerFormat: '<b>{series.name}</b><br>',
        pointFormat: '{point.x} cm, {point.y} kg'
      }
    }
  },
  series: [{
    name: 'Female',
    color: 'rgba(223, 83, 83, .5)',
    data: [
      [161.2, 51.6],
      [167.5, 59.0],
      [159.5, 49.2],
      [157.0, 63.0],
      [155.8, 53.6],
      [170.0, 59.0],
      [159.1, 47.6]
    ].map(function(p) {
      return [p[0], p[1], p[0]]; // x=z
    })

  }, {
    name: 'Male',
    color: 'rgba(119, 152, 191, .5)',
    data: [
      [174.0, 65.6],
      [175.3, 71.8],
      [193.5, 80.7],
      [186.5, 72.6],
      [187.2, 78.8],
      [181.5, 74.8],
      [184.0, 86.4]
    ].map(function(p) {
      return [p[0], p[1], p[0]]; // x=z
    })
  }]
});

Don't forget to include highcharts-more : 不要忘了包含highcharts-more

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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