以编程方式使用缩放在Highcharts中绘制rect和line

时间:2016-09-13 12:30:59

标签: javascript highcharts draw

我正在使用path()rect()使用Highcharts.Renderer在Highcharts中进行一些程序化绘图。在下面的代码中,我手动绘制了直线和矩形的坐标。实际上,它与主要数据系列(带有值的日期)有关。

如何以编程方式绘制内容并使缩放工作?

主图,带缩放:

    chart: {
            zoomType: 'x',
    },
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]

程序化绘图:

 chart.renderer.rect(100, 110, 100, 100, 5)
        .attr({
            'stroke-width': 2,
            stroke: 'red',
            fill: 'transparent',
            zIndex: 3
        })
        .add();
  var path = [
    'M', 100, 100,
    'L', 130, 110,
    'L', 160, 105,
    'L', 190, 150,
    ];
  chart.renderer.path(path)
        .attr({
        'stroke-width': 2,
        stroke: 'blue',
        zIndex: 4
      })
      .add();

http://jsfiddle.net/n8ro1b9m/1/

2 个答案:

答案 0 :(得分:6)

现在你并没有真正使用你的图表值 - 你正在独立于你的系列绘制你的矩形和路径。您可以使用点y和x值以及Axis.toPixels()方法将图形与图表相关联:http://api.highcharts.com/highcharts/Axis.toPixels

$(function() {
  var addRect = function(chart) {
    $('.rect').remove();
    var xAxis = chart.xAxis[0],
      yAxis = chart.yAxis[0]
    chart.renderer.rect(xAxis.toPixels(1), 110, xAxis.toPixels(2) - xAxis.toPixels(1), 100, 5)
      .attr({
        'stroke-width': 2,
        stroke: 'red',
        fill: 'transparent',
        zIndex: 0
      }).addClass('rect')
      .add();
    chart.renderer.rect(0, 0, chart.plotLeft, chart.chartHeight + chart.plotTop, 5)
      .attr({
        fill: 'white',
        zIndex: 0
      }).addClass('rect')
      .add();
  };
  $('#container').highcharts({
    chart: {
      zoomType: 'x',
      events: {
        redraw: function() {
          addRect(this);
        },
        load: function() {
          addRect(this);
        }
      }
    },
    xAxis: {
      categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },
    series: [{
      data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]
  });
});

在这里,您可以看到一个示例:http://jsfiddle.net/n8ro1b9m/4/

答案 1 :(得分:0)

您可以使用以下函数在函数中使用series.data值:

chart.series[0].data[i].y

i系列中的点数。 那是你想要做的吗?