gpt4 book ai didi

javascript - 第一次缩放时, Angular 图丢失数据

转载 作者:行者123 更新时间:2023-11-28 04:05:41 27 4
gpt4 key购买 nike

当我在加载图表时第一次缩放时, Angular 图中数据丢失。以下是截图

enter image description here

缩放后

enter image description here

这是我的代码

function getPopUpGraph() {
$scope.currentZoom = 1;
$scope.popUpGraph = {};
$scope.popUpGraph = {
data: [],
options: {
labels: ["Date", $scope.selectedDataPoint.LegendName, "TrendLine"],
showPopover: false,
//customBars: true,
legend: "onmouseover",
highlightSeriesOpts: {
strokeWidth: 2,
strokeBorderWidth: 1
},
animatedZooms: true,
interactionModel: Dygraph.defaultInteractionModel,
showRangeSelector: true,
rangeSelectorPlotLineWidth: 1,
rangeSelectorPlotStrokeColor: 'gray',
rangeSelectorPlotFillColor: 'gray',
highlightCircleSize: 4,
rangeSelectorAlpha: 0.9,
rangeSelectorForegroundLineWidth: 1.25,
rangeSelectorForegroundStrokeColor: 'dark gray',
visibility: [true, false],
series: {
'TrendLine': {
strokePattern: [3, 2, 3, 2]
},
},
//xlabel: 'Date',
ylabel: $scope.selectedDataPoint.Unit,
title: $scope.selectedDataPoint.LegendName,
legendEnabled: false,
colors: ["#ff0000"],
valueRange: null,
height: 300,
resizeEnabled: true,
strokeWidth: 2,
axes: {
x: {
axisLabelFormatter: function (d, gran) {
if ($scope.currentZoomLevel.name == '12h') {
return $filter('date')(d, 'h:mm a');
}
else
return $filter('date')(d, 'MMM dd h:mm');
},
valueFormatter: function (ms) {
return $filter('date')(ms, 'M/d/yy h:mm a');
}
}
},
drawCallback: function (g, is_initial) {
if (g.dateWindow_)
myPopUpRange(g.dateWindow_)
}
}
}
$scope.getPopGraphData($scope.currentZoom, 0);
}

数据正在从 $scope.getPopGraphData 函数获取。

我正在这个主函数中调用一些其他函数。我认为这不是问题。在 Angular dygraph 的演示中,缩放后,范围选择器也发生变化。所以数据显示正确。就我而言,范围选择器在第一次缩放时不会改变。有什么解决办法吗?提前致谢...

最佳答案

我找到了解决方案。在 getPopUpGraph() 函数中,有一个缺点函数正在调用。禁用 myPopUpRange() 函数后,它现在可以正常工作。 myPopUpRange() 用于重置 x 轴值。但没有必要,因为 dygraph 会自动分配 x 轴范围。

关于javascript - 第一次缩放时, Angular 图丢失数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46723739/

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