将附加数据设置为highcharts系列


116

有什么方法可以将一些其他数据传递到将用于显示在图表“工具提示”中的系列对象?

例如

 tooltip: {
     formatter: function() {
               return '<b>'+ this.series.name +'</b><br/>'+
           Highcharts.dateFormat('%b %e', this.x) +': '+ this.y;
     }

在这里,我们只能对系列使用series.name,this.x和this.y。可以说我需要随数据集一起传递另一个动态值,并且可以通过系列对象进行访问。这可能吗?

谢谢大家。


1
Javascript对传递的对象并不挑剔,如果不使用它们,通常会忽略它们。它们可能会被库的内部代码删除,但不一定如此,通常值得一试。您是否尝试过将其他数据附加到series对象并在此处理程序中显示?
Merlyn Morgan-Graham

@ MerlynMorgan-Graham-我是“ HighCharts”的新手。您能张贴任何我能找到样例东西的链接吗?非常感谢您对我的帮助。
山姆

@Sam,我的回答有一个完整的工作示例,您可以看一下。让我知道它是否不能完全满足您的要求。
尼克,

在气泡图的情况下,如何添加附加数据(例如myData),因为数据数组就像data一样:[[12,43,13],[74,23,44]]例如,像上面这样的数据值的键是什么有“ y”,有“ x”,“ y”和“ z”吗?或“大小”
可见

Answers:


220

是的,如果您按照如下方式设置系列对象,每个数据点都是一个哈希,则可以传递额外的值:

new Highcharts.Chart( {
    ...,
    series: [ {
        name: 'Foo',
        data: [
            {
                y : 3,
                myData : 'firstPoint'
            },
            {
                y : 7,
                myData : 'secondPoint'
            },
            {
                y : 1,
                myData : 'thirdPoint'
            }
        ]
    } ]
} );

在工具提示中,您可以通过传入的对象的“ point”属性来访问它:

tooltip: {
    formatter: function() {
        return 'Extra data: <b>' + this.point.myData + '</b>';
    }
}

此处的完整示例:https : //jsfiddle.net/burwelldesigns/jeoL5y7s/


1
我知道这是一个旧答案,但是Fiddle链接不再显示相关示例。
undefinedvariable 2013年

@undefinedvariable-嗯,好像其他人对此进行了编辑,并在jsfiddle中将新版本设置为“基本”版本。那真不幸。更新了小提琴,现在链接到答案中的特定版本。
尼克,

@尼克,太好了,谢谢。好的答案,顺便说一句。我用光了未使用的默认值来偷偷获取信息
。– undefinedvariable

如何访问myData如果它是一个数组?
维沙尔

2
谢谢,我如何在气泡图的情况下添加像myData这样的附加数据,因为数据数组就像data一样:[[12,43,13],[74,23,44]]例如,像这样的数据值的键是什么上面有“ y”,是否有“ x”,“ y”和“ z”?还是“大小”?
2013年

17

此外,使用此解决方案,您甚至可以根据需要放置多个数据

tooltip: {
    formatter: function () {
        return 'Extra data: <b>' + this.point.myData + '</b><br> Another Data: <b>' + this.point.myOtherData + '</b>';
    }
},

series: [{
    name: 'Foo',
    data: [{
        y: 3,
        myData: 'firstPoint',
        myOtherData: 'Other first data'
    }, {
        y: 7,
        myData: 'secondPoint',
        myOtherData: 'Other second data'
    }, {
        y: 1,
        myData: 'thirdPoint',
        myOtherData: 'Other third data'
    }]
}]

谢谢尼克。


4
当使用[x,y]非对象格式时,“附加数据”是不可能的吗?我们具有datetimex值,但要向工具提示添加额外的数据。
Rvanlaak '16

时间序列数据示例:var serie = {x:Date.parse(d.Value),y:d.Item,method:d.method};
Arjun Upadhyay

15

对于时间序列数据,尤其是具有足够数据点来激活Turbo阈值的数据,以上提出的解决方案将不起作用。在turbo阈值的情况下,这是因为Highcarts期望数据点是一个像这样的数组:

series: [{
    name: 'Numbers over the course of time',
    data: [
      [1515059819853, 1],
      [1515059838069, 2],
      [1515059838080, 3],
      // you get the idea
    ]
  }]

为了不失去turbo阈值的好处(这在处理大量数据点时很重要),我将数据存储在图表之外,并在工具提示formatter功能中查找数据点。这是一个例子:

const chartData = [
  { timestamp: 1515059819853, value: 1, somethingElse: 'foo'},
  { timestamp: 1515059838069, value: 2, somethingElse: 'bar'},
  { timestamp: 1515059838080, value: 3, somethingElse: 'baz'},
  // you get the idea
]

const Chart = Highcharts.stockChart(myChart, {
  // ...options
  tooltip: {
    formatter () {
      // this.point.x is the timestamp in my original chartData array
      const pointData = chartData.find(row => row.timestamp === this.point.x)
      console.log(pointData.somethingElse)
    }
  },
  series: [{
      name: 'Numbers over the course of time',
      // restructure the data as an array as Highcharts expects it
      // array index 0 is the x value, index 1 is the y value in the chart
      data: chartData.map(row => [row.timestamp, row.value])
    }]
})

此方法适用于所有图表类型。


谢谢您提供答案,这对于在高库存图中显示其他数据确实很有帮助。
S库马尔

1
data: _.map(data, row => [row['timestamp'], row['value']])应该data: chartData.map(row => [row.timestamp, row.value])吗?另外,您不需要lodash;您可以使用 Array.find。IE不支持它,但是您已经在使用ES6(const),MS于2016年停止了对IE的支持
Dan Dascalescu '18

很好抓住chartData。我习惯于使用lodash,但您是对的。我更新了示例,因此它与库无关。谢谢。
Christof

3

我正在使用AJAX从SQL Server中获取数据,然后准备了一个js数组,用作我的图表中的数据。AJAX成功后的JavaScript代码:

...,
success: function (data) {
            var fseries = [];
            var series = [];
            for (var arr in data) {
                for (var i in data[arr]['data'] ){
                    var d = data[arr]['data'][i];
                    //if (i < 5) alert("d.method = " + d.method);
                    var serie = {x:Date.parse(d.Value), y:d.Item, method:d.method };
                    series.push(serie);
                }
                fseries.push({name: data[arr]['name'], data: series, location: data[arr]['location']});
                series = [];
            };
            DrawChart(fseries);
         },

现在在工具提示中显示额外的元数据:

...
tooltip: {
    xDateFormat: '%m/%d/%y',
    headerFormat: '<b>{series.name}</b><br>',
    pointFormat: 'Method: {point.method}<br>Date: {point.x:%m/%d/%y } <br>Reading: {point.y:,.2f}',
    shared: false,
},

我使用DataRow遍历结果集,然后使用一个类来分配值,然后再以Json格式传回。这是Ajax调用的控制器操作中的C#代码。

public JsonResult ChartData(string dataSource, string locationType, string[] locations, string[] methods, string fromDate, string toDate, string[] lstParams)
{
    List<Dictionary<string, object>> dataResult = new List<Dictionary<string, object>>();
    Dictionary<string, object> aSeries = new Dictionary<string, object>();
    string currParam = string.Empty;        

    lstParams = (lstParams == null) ? new string[1] : lstParams;
    foreach (DataRow dr in GetChartData(dataSource, locationType, locations, methods, fromDate, toDate, lstParams).Rows)
    {
        if (currParam != dr[1].ToString())
        {
            if (!String.IsNullOrEmpty(currParam))       //A new Standard Parameter is read and add to dataResult. Skips first record.
            {
                Dictionary<string, object> bSeries = new Dictionary<string, object>(aSeries); //Required else when clearing out aSeries, dataResult values are also cleared
                dataResult.Add(bSeries);
                aSeries.Clear();
            }
            currParam = dr[1].ToString(); 
            aSeries["name"] = cParam;
            aSeries["data"] = new List<ChartDataModel>();
            aSeries["location"] = dr[0].ToString();
        }

        ChartDataModel lst = new ChartDataModel();
        lst.Value = Convert.ToDateTime(dr[3]).ToShortDateString();
        lst.Item = Convert.ToDouble(dr[2]);
        lst.method = dr[4].ToString();
        ((List<ChartDataModel>)aSeries["data"]).Add(lst);
    }
    dataResult.Add(aSeries);
    var result = Json(dataResult.ToList(), JsonRequestBehavior.AllowGet);  //used to debug final dataResult before returning to AJAX call.
    return result;
}

我意识到有一种更有效和可接受的C#编码方式,但我继承了该项目。


1

只是为了增加某种活力:

这样做是为了为10个类别的堆积柱形图生成数据。
我想要每个类别4的数据系列,并希望显示每个数据系列的其他信息(图像,问题,干扰因素和预期答案):

<?php 

while($n<=10)
{
    $data1[]=array(
        "y"=>$nber1,
        "img"=>$image1,
        "ques"=>$ques,
        "distractor"=>$distractor1,
        "answer"=>$ans
    );
    $data2[]=array(
        "y"=>$nber2,
        "img"=>$image2,
        "ques"=>$ques,
        "distractor"=>$distractor2,
        "answer"=>$ans
    );
    $data3[]=array(
        "y"=>$nber3,
        "img"=>$image3,
        "ques"=>$ques,
        "distractor"=>$distractor3,
        "answer"=>$ans
    );
    $data4[]=array(
        "y"=>$nber4,
        "img"=>$image4,
        "ques"=>$ques,
        "distractor"=>$distractor4,
        "answer"=>$ans
    );
}

// Then convert the data into data series:

$mydata[]=array(
    "name"=>"Distractor #1",
    "data"=>$data1,
    "stack"=>"Distractor #1"
);
$mydata[]=array(
    "name"=>"Distractor #2",
    "data"=>$data2,
    "stack"=>"Distractor #2"
);
$mydata[]=array(
    "name"=>"Distractor #3",
    "data"=>$data3,
    "stack"=>"Distractor #3"
);
$mydata[]=array(
    "name"=>"Distractor #4",
    "data"=>$data4,
    "stack"=>"Distractor #4"
);
?>

在高图部分:

var mydata=<? echo json_encode($mydata)?>;

// Tooltip section
tooltip: {
    useHTML: true,
        formatter: function() {

            return 'Question ID: <b>'+ this.x +'</b><br/>'+
                   'Question: <b>'+ this.point.ques +'</b><br/>'+
                   this.series.name+'<br> Total attempts: '+ this.y +'<br/>'+
                   "<img src=\"images/"+ this.point.img +"\" width=\"100px\" height=\"50px\"/><br>"+
                   'Distractor: <b>'+ this.point.distractor +'</b><br/>'+
                   'Expected answer: <b>'+ this.point.answer +'</b><br/>';
               }
           },

// Series section of the highcharts 
series: mydata
// For the category section, just prepare an array of elements and assign to the category variable as the way I did it on series.

希望它能帮助某人。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.