gpt4 book ai didi

javascript - 导出HighCharts图表具体高度宽度

转载 作者:行者123 更新时间:2023-11-29 15:15:38 25 4
gpt4 key购买 nike

为了将导出的高度和宽度属性更改为 HighCharts 的图表,您必须添加导出参数:

var chart = Highcharts.mapChart('container', {
title: {
text: 'USA 2016 Presidential Election Results'
},

chart: {
animation: false
},

exporting: { height: 200, width: 700} //<---- exporting

在下面的图表中我遇到了困难:

https://jsfiddle.net/kmr6kv6L/2/

无论我设置什么高度或宽度,输出都会返回默认设置的任何尺寸。这个图表不遵循相同的功能吗?

这些值只是示例,但它也不适用于其他值。

谢谢

最佳答案

根据 Documentationthis sample

sourceWidth: Number The width of the original chart when exported, unless an explicit chart.width is set. The width exported raster image is then multiplied by scale.

而不是使用以下导出选项:

 exporting: { height: 200, width: 700}  //<---- exporting

试试这个:

    exporting: {
sourceWidth: 700,
sourceHeight: 400,
},

编辑

除了我之前所说的,你还应该像下面这样设置scale = 1:

 exporting: {
sourceWidth: 700,
sourceHeight: 400,
scale: 1
},

jsfiddle link

关于javascript - 导出HighCharts图表具体高度宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49620813/

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