gpt4 book ai didi

javascript - amcharts 4 - 以前的版本 3 用户遇到了一些问题

转载 作者:行者123 更新时间:2023-12-01 01:27:56 29 4
gpt4 key购买 nike

我已经使用 amcharts 版本 3 有一段时间了,想升级到新版本 4。我在复制旧版本中所做的事情时遇到了相当大的麻烦。我已经浏览了文档和示例,尝试了不同的方法,但仍然无法让它按照我的意愿运行。

  • 第一个“日期/值”被轴 chop

  • x 轴上的日期并未以光标显示的日期为中心,看起来很奇怪

  • 应该只显示 7 个数据点(7 天),但末尾总会显示额外的一天,从而在图表右侧留有空白

  • 我无法获得以数据点为中心的值工具提示

  • 最后,我根本无法更改日期格式,并且已尝试了文档中显示的每个示例[已修复]

我想知道这是否与在我的数据中使用时间戳有关。以前的版本没有这个问题。

// Create chart instance
var chart = am4core.create("chart_alerts", am4charts.XYChart);

chart.data = randomData();
chart.fontSize = 12;
chart.paddingRight = 0;
chart.paddingLeft = 0;
chart.paddingTop = 20;

var dateAxis = chart.xAxes.push(new am4charts.DateAxis());
dateAxis.renderer.grid.template.disabled = true;
dateAxis.renderer.grid.template.location = 0;
dateAxis.tooltip.background.pointerLength = 0;
dateAxis.tooltip.fontSize = 12;

//fixes the date display
dateAxis.dateFormats.setKey("day", "EEE, MMM dd");
dateAxis.periodChangeDateFormats.setKey("day", "EEE, MMM dd");

var valueAxis = chart.yAxes.push(new am4charts.ValueAxis());
valueAxis.tooltip.disabled = true;
valueAxis.min = 0;

var series = chart.series.push(new am4charts.LineSeries());
series.dataFields.dateX = "timestamp";
series.dataFields.valueY = "count";
series.stroke = am4core.color("#eb4741");
series.strokeWidth = 2;
series.tensionX = 0.8;
series.fill = am4core.color("#eb4741");
series.fillOpacity = 0.1;
series.tooltipText = "Total : {valueY}";
series.tooltip.background.pointerLength = 0;
series.tooltip.fontSize = 12;
series.tooltip.background.strokeOpacity = 0;
series.tooltip.background.fillOpacity = 1;

var dropShadow = new am4core.DropShadowFilter();
dropShadow.dy = 0;
dropShadow.dx = 0;
dropShadow.opacity = 0;
series.tooltip.filters.push(dropShadow);

var bullet = series.bullets.push(new am4charts.CircleBullet());
bullet.circle.radius = 4;
bullet.circle.fill = am4core.color("#fff");
bullet.circle.strokeWidth = 2;

chart.cursor = new am4charts.XYCursor();
chart.cursor.lineX.opacity = 0;
chart.cursor.lineY.opacity = 0;

//random data generator up to 300
function randomData() {

var curr_date = $.now();

//counter
var count = 7;

//rand value
function randValue() {
return Math.floor(Math.random() * 300);
}

series = [
{'timestamp': curr_date - (--count * 86400000), 'count': randValue()},
{'timestamp': curr_date - (--count * 86400000), 'count': randValue()},
{'timestamp': curr_date - (--count * 86400000), 'count': randValue()},
{'timestamp': curr_date - (--count * 86400000), 'count': randValue()},
{'timestamp': curr_date - (--count * 86400000), 'count': randValue()},
{'timestamp': curr_date - (--count * 86400000), 'count': randValue()},
{'timestamp': curr_date - (--count * 86400000), 'count': randValue()}
];

return series;
}

fiddle 位于 JSFiddle

编辑:当我遇到其他人遇到同样的问题时,我设法解决了日期格式问题。 Fiddle 已更新,但其他内容仍然存在问题。

最佳答案

  • first 'day/value' is cutoff by the axes
  • the days on the x-axis aren't centered with the days displayed by the cursor which looks very weird

我认为这是页面空间不足时的默认行为。标签和引导线未与数据点对齐。

例如:https://www.amcharts.com/demos/date-based-data/

enter image description here

这是有一个原因的,文档中对此进行了解释:https://www.amcharts.com/docs/v4/concepts/axes/#Labels_on_Date_axis

要“强制”标签与数据点对齐,我发现的唯一方法是将 minGridPosition 设置为一个较小的数字。但这有一个缺点,即使没有足够的空间,也会显示每个标签,从而使所有标签夹在一起:

...,
xAxes: [{
type: "DateAxis",
renderer: {
grid: {
disabled: true
},
minGridDistance: 1
},
tooltip: {
fontSize: 12,
background: {
pointerLength: 0
}
}
}],
...

enter image description here

演示: http://jsfiddle.net/davidliang2008/0shze83d/

  • I can't get the value tooltip centered over the data point

您必须将pointerOrientation更改为“垂直”,而不是侧面。此外,您可能还想对齐文本:

...,
series: [{
type: "LineSeries",
...,
tooltip: {
pointerOrientation: "vertical",
textAlign: "middle",
textVAlign: "middle",
...
},
...
}],
...

enter image description here

演示: http://jsfiddle.net/davidliang2008/hy5xeu1w/

关于javascript - amcharts 4 - 以前的版本 3 用户遇到了一些问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53581411/

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