Highcharts无法读取未定义的属性'series'

nwsw7zdq  于 2022-11-10  发布在  Highcharts
关注(0)|答案(2)|浏览(203)

当我建立具有单一Y轴的折缐图时,看到这个错误。
未捕获的类型错误:无法读取未定义的highcharts.3.0.1.js的属性'series':147
序列似乎有点向左偏移。最左边的工具提示挂在显示Y轴名称的图表上。所有的工具提示都有点偏离,如果我将鼠标一直移到图表的右边,我会在控制台中反复看到这个错误。
有趣的是,如果我放大,然后点击“重置缩放”,图表呈现正确,问题就消失了。
不幸的是,创建一个小提琴将是困难的,因为我建立我的配置选项在飞行中。我正在使用addSeries添加我的系列到一个空图表,一旦它已经显示。
提前感谢您的任何帮助或提示。

  • 戴尔
fjaof16o

fjaof16o1#

一般来说,没有代码是很难找到问题,只是复制您的“选项在飞行”,其中重现问题,请。
但是,您很可能正在尝试为不存在的轴添加系列。例如:

yAxis: { },
series: [{ yAxis: 1 }] <-- obviously there is only one yAxis
sg24os4d

sg24os4d2#

export class xyzComponent implements OnInit {
  highcharts = Highcharts;
  chart;
  chartCallback;
  title = 'myHighchart';
  chartConstructor = "chart";
  chartOptions: {};

ngOnInit() {
    this.chartOptions = {
        chart: {
            type: "spline"
        },
        title: {
            text: 'Average Vegetation and Soil Moisture Index'
        },
    }
}

}

it's for Angualar

相关问题