gpt4 book ai didi

javascript - Highcharts : drawgraph based on chart name

转载 作者:行者123 更新时间:2023-12-03 11:03:10 25 4
gpt4 key购买 nike

我知道我们可以更改图表,选择以下系列

$(document).ready(function () {
var lineSeries = Highcharts.seriesTypes.line;
var lineDrawGraph = lineSeries.prototype.drawGraph;
lineSeries.prototype.drawGraph = function () {

除了seriesType.line之外,还有什么方法可以选择lineSeries吗?例如使用图表名称..

我需要仅对折线图执行此函数,而不是对页面中的所有折线图执行此函数。不幸的是,所有折线图都会调用“lineSeries.prototype.drawGraph”。

最佳答案

您可以像这样获取特定系列的类型:

Highcharts.charts[i].series[j].type

您可以在特定图表 (i) 上检查系列的类型,并在 Highcharts.charts[i].series 上使用 foreach 并检查类型是否是 line 然后添加您的 drawGraph 函数。

关于javascript - Highcharts : drawgraph based on chart name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27989464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com