简体   繁体   English

Highcharts气泡图-带有错误栏的自定义工具提示(水平或垂直)

[英]Highcharts bubble graph - Custom Tooltip with Error bar (either horizontal or vertical)

I have setup a time-series bubble chart. 我已经设置了一个时序气泡图。

http://jsfiddle.net/mshaffer/kLk22j37/ http://jsfiddle.net/mshaffer/kLk22j37/

The elements will be of 3 types: P, A, B. 元素将分为3种类型:P,A,B。

data: [
                { x: Date.UTC(1990,1,1), y: .63, z: 1.2, name: 'P', patent: {docid:07654321, vecsim: .63, title:'My Patent Title',abstract:'My Patent Abstract',firm:'My Patent Firm', technology:'Tech 1 (title from dict) <BR /> Tech 2 (title from dict)', datefiled: 'March 1, 2005', dategranted: 'July 1, 2007'} }, 
                { x: Date.UTC(2010,1,1), y: .93, z: 1.1, name: 'A', application: {docid:216000313,  vecsim: .93, title:'My Application Title',abstract:'My Application Abstract', firm:'My Application Firm', technology:'Tech 1 (title from dict) <BR /> Tech 2 (title from dict)', datepublished: 'August 1, 2005'} }, 
                 { x: Date.UTC(2000,1,1), y: .73, z: 1.3, name: 'B', patent: {docid:07654321,  vecsim: .73, title:'My Patent Title',abstract:'My Patent Abstract',firm:'My Patent Firm', technology:'Tech 1 (title from dict) <BR /> Tech 2 (title from dict)', datefiled: 'March 1, 2005', dategranted: 'July 1, 2007'}, application: {docid:216000313,  vecsim: .77, title:'My Application Title',abstract:'My Application Abstract', firm:'My Application Firm', technology:'Tech 1 (title from dict) <BR /> Tech 2 (title from dict)', datepublished: 'August 1, 2005'} }, 
            ]

For the scenario of 'B' both (which means data exists for both "P" and "A"), I want to draw a error bar (in this case vertically) to connect the two vecsim values in the respective objects. 对于“ B”的情况(这意味着“ P”和“ A”都存在数据),我想绘制一个误差线(在这种情况下是垂直的)以连接各个对象中的两个vecsim值。 [.77, .73] [.77,.73]

The tooltip custom function 'writeToolTip' needs to draw the error bar, and the str so the error bar is still visible. 工具提示自定义函数'writeToolTip'需要绘制错误栏,并绘制str,以便错误栏仍然可见。

As a tooltip, when the hover removes, the error bar needs to also disappear. 作为提示,悬停时,错误栏也需要消失。

Create a series of error bars with no color. 创建一系列没有颜色的误差线。 In that series associate error bars with the bubble points with a custom property, eg linkedTo: 在该系列中,将误差线与带有自定义属性的气泡点相关联,例如,linkedTo:

 {
  type: 'errorbar',
  enabledMouseTracking: false,
  color: 'none',
  data: [{
    x: Date.UTC(1990, 1, 1),
    low: 0.73,
    high: 0.77,
    linkedTo: 'P'
  },{
    x: Date.UTC(2000, 1, 1),
    low: 0.73,
    high: 0.77,
    linkedTo: 'B'
  },{
    x: Date.UTC(2010, 1, 1),
    low: 0.73,
    high: 0.77,
    linkedTo: 'A'
  }]
}

In the tooltip formatter set the proper color for the associated error bar. 在工具提示格式程序中,为相关的错误栏设置正确的颜色。

function writeToolTip(obj) {
  var errorBars = obj.series.chart.series[1].data;
  errorBars.forEach(point => {
  if (point.linkedTo === obj.key) {
    var paths = point.graphic.element.children;
    Array.prototype.forEach.call(paths, path => {
      path.setAttributeNS(null, 'stroke', 'black');
    });
  }
});

var str = '';
str += 'Write out details based on existence of which (patent / app)';
return str;
}

Also, you need to wrap tooltip's refresh and hide method, so the arror bars will disappear. 另外,您需要包装工具提示的refresh and hide方法,以使错误提示条消失。

  Highcharts.wrap(Highcharts.Tooltip.prototype, 'hide', function(p, delay) {
    p.call(this, delay);
    hideErrorBars(this.chart.series[1].data);
  });

Highcharts.wrap(Highcharts.Tooltip.prototype, 'refresh', function(p, point, mouseEvent) {
  if (point) {
    hideErrorBars(point.series.chart.series[1].data);
  }

  p.call(this, point, mouseEvent);
});

example: http://jsfiddle.net/kLk22j37/13/ 例如: http//jsfiddle.net/kLk22j37/13/

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

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