TypeError: Highcharts[h] is not a function

梦想与她 提交于 2019-12-24 15:42:49

问题


My Plnkr link: http://plnkr.co/edit/S0BKjrgxz564oCPs9nCw?p=preview

Any idea why I would be getting this error? Not sure where Highcharts[h] is...

Controller Code

(function() {
    angular.module('highChartTest', ['ui.bootstrap', 'highcharts-ng'])
        .controller('MyHighChart', ['$scope', '$timeout', MyHighChart]);

    // HighCharts Column Chart
    function MyHighChart($scope, $timeout) {

        var vs             = $scope;
            ticker         = 'GOOG',
            vs.chartObject = {};

        var dayHolder = [];
        var count = 0;
        _.times(97, function() {
            dayHolder.push({
                'x': count++,
                'y': count++
            });
        });

        // Default data fed into navigator:
        vs.navigatorData = dayHolder;

        this.config = {
            options: {
                    ignoreHiddenSeries: false,
                    credits: { enabled: true, text: 'www.tickertags.com' },
                    legend: {
                        itemStyle: {
                            color      : "#333333",
                            cursor     : "pointer",
                            fontSize   : "10px",
                            fontWeight : "normal"
                        },
                        enabled  : true,
                        floating : true,
                        align    : 'left',
                        verticalAlign: 'top',
                        x: 60
                    },
                    chart : {
                        title    : { text: '' },
                        subtitle : { text: '' },
                        renderTo : 'chart1',
                        zoomType : 'x',
                        events: {
                            load: function () {
                                // HighChart loaded callback:
                                broadcastChartLoaded();
                                console.log('config.chart.events.load...');
                            },
                            redraw: function(event) {
                                // console.log(' chart events redraw fired');
                            }
                        }
                    },
                    scrollbar: {
                        enabled    : false,
                        liveRedraw : false
                    },
                    navigator : {
                        enabled: true,
                        adaptToUpdatedData: true,
                        // enabled: false,
                        // adaptToUpdatedData: false,
                        series : {
                            data : vs.navigatorData
                        }
                    },
                    rangeSelector: {
                        enabled: false,
                    },
                    exporting: { enabled: false }
                },
                exporting: { enabled: false },
                useHighStocks: true,
                xAxis : {
                    ordinal: false,
                    dateTimeLabelFormats : {
                        hour   : '%I %p',
                        minute : '%I:%M %p'
                    },
                    events : {
                        // afterSetExtremes : afterSetExtremes,
                        // setExtremes : setExtremes
                    },
                    minRange: 3600 * 1000 // one hour
                },
                yAxis: [{ // Primary yAxis
                    labels: {
                        format: '${value:.2f}',
                        style: {
                            color: '#4C73FF',
                        }
                    },
                    title: {
                        text: 'Price',
                        style: {
                            color: '#4C73FF',
                        }
                    }
                },
                { // Secondary yAxis
                    gridLineWidth: 0,
                    title: {
                        text: 'Mentions',
                        style: {
                            color: '#FDE18D'
                            // Pick one - "#FDE18D", "#7DD0FA", "#58A6EC"
                        }
                    },
                    opposite: false
                }],
                func: function(chart) {
                    vs.chartObject = chart;
                },

                series : [{
                    zIndex: 1000,
                    yAxis: 0,
                    showInLegend: true,
                    color: '#4C73FF',
                    data: dayHolder,
                    type: 'line',
                    name: 'SPY',
                    dataGrouping: {
                        enabled: true
                    }
                }]
        };

        function broadcastChartLoaded() {
          console.log('broadcastChartLoaded!!!');
        }

        $timeout(function() {
          console.log('inside timeout, now add 1st series');
          var quoteData = vs.navigatorData;
          vs.chartObject.addSeries({
              zIndex       : 1000,
              yAxis        : 0,
              name         : ticker,
              data         : quoteData,
              type         : 'line',
              color        : '#4C73FF',
              showInLegend : true,
              dataGrouping : {
                  enabled: true
              }
            }, true);
        }, 2000);
    }
})();

回答1:


You were using highcharts, and not the highstock.js library, but specifying highstock in the config.

http://plnkr.co/edit/mr4STsk3ekVOwXpZVgk0?p=preview

<script data-require="highstock@4.2.3" data-semver="4.2.3" src="//cdnjs.cloudflare.com/ajax/libs/highstock/4.2.3/highstock.js"></script>


来源:https://stackoverflow.com/questions/35420784/typeerror-highchartsh-is-not-a-function

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!