简体   繁体   English

Google Charts:如何在散点图中设置一个点的样式?

[英]Google Charts: how do I style one point in a scatter chart?

By using the scatter chart API at Google Charts, together with this example on how to change the shape/color/etc for one point, I've been trying hard to accomplish this.通过使用散点图API在谷歌图表,连同这个例子就如何改变形状/颜色/等的一个点,我一直在努力做到这一点。 However, while the point that is supposed to be individually styled shows up, it is not changed according to the given style.然而,虽然应该单独设置样式的点出现了,但它不会根据给定的样式而改变。 Here is a small example:这是一个小例子:

<html>
<head>
  <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
  <script type="text/javascript">
  google.charts.load('current', {'packages':['scatter']});
  google.charts.setOnLoadCallback(drawChart);

  function drawChart () {

    var data = new google.visualization.DataTable();
    data.addColumn('number', 'X-axis');
    data.addColumn('number', 'A data');
    data.addColumn({'type': 'string', 'role': 'style'});
    data.addColumn('number', 'B data');
    data.addColumn({'type': 'string', 'role': 'style'});

    data.addRows([
      [1.1, 12, null, null, null],
      [1.3, 13, null, null, null],
      [0.1, null, null, 0, null],
      [0.3, null, null, 3, null],
      [1.2, 13, 'point {size: 13; shape-type: star; fill-color: #00ffff;}', null, null],
      [0.2, null, null, 4, 'point {size: 13; shape-type: star; fill-color: #ff00ff;}'],

    ]);

    var options = {
      width: 800,
      height: 500,
      chart: {
        title: 'Small example'
      },
      hAxis: {title: 'X-axis'},
      vAxis: {title: 'Y-axis'}
    };

    var chart = new google.charts.Scatter(document.getElementById('example_scatter_chart'));

    chart.draw(data, google.charts.Scatter.convertOptions(options));
  }
  </script>
  </head>
  <body>
    <div id="example_scatter_chart" style="width: 500px; height: 500px;"></div>
  </body>
</html>

What am I missing here?我在这里缺少什么?

role: 'style' simply doesn't work on a Material chart role: 'style'材质图表上根本不起作用
google.charts.Scatter

need to use 'packages':['corechart'] and google.visualization.ScatterChart需要使用'packages':['corechart']google.visualization.ScatterChart

see following working snippet...请参阅以下工作片段...

 google.charts.load('current', {'packages':['corechart']}); google.charts.setOnLoadCallback(drawChart); function drawChart () { var data = new google.visualization.DataTable(); data.addColumn('number', 'X-axis'); data.addColumn('number', 'A data'); data.addColumn({'type': 'string', 'role': 'style'}); data.addColumn('number', 'B data'); data.addColumn({'type': 'string', 'role': 'style'}); data.addRows([ [1.1, 12, null, null, null], [1.3, 13, null, null, null], [0.1, null, null, 0, null], [0.3, null, null, 3, null], [1.2, 13, 'point {size: 13; shape-type: star; fill-color: #00ffff;}', null, null], [0.2, null, null, 4, 'point {size: 13; shape-type: star; fill-color: #ff00ff;}'] ]); var options = { width: 800, height: 500, chart: { title: 'Small example' }, hAxis: {title: 'X-axis'}, vAxis: {title: 'Y-axis'}, theme: 'material' }; var chart = new google.visualization.ScatterChart(document.getElementById('example_scatter_chart')); chart.draw(data, options); }
 <script src="https://www.gstatic.com/charts/loader.js"></script> <div id="example_scatter_chart"></div>

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

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