gpt4 book ai didi

javascript - 将 Highcharts(和模块)与 lit-element 一起使用

转载 作者:行者123 更新时间:2023-11-30 11:03:06 25 4
gpt4 key购买 nike

根据 GitHub Issue ,这是一个后续问题:

我想将 Highcharts 和一些模块与 Lit-Element 一起使用,但在导入 Highcharts 和模块时遇到困难。

如果我使用 import 'highcharts';,我可以在我的代码中完美地使用 Highcharts-Object。使用给定的解决方案(import * as Highcharts from 'highcharts';),它不起作用。

任何给定的模块导入解决方案都不起作用:

import 'highcharts/modules/exporting'; // doesn't throw an error, but can't bind it to Highcharts

import HC_exporting from 'highcharts/modules/exporting'; // does throw a 'no named default export' error

import * as HC_exporting from 'highcharts/modules/exporting'; // throws 'TypeError: HC_exporting is not a function'
ld-application-actions.js:56 Uncaught (in promise) SyntaxError: The requested module '../../../../node_modules/highcharts/modules/exporting.js' does not provide an export named 'default'

那么是否有可能导入和使用 Highcharts 及其模块?

疯狂的事情:我试图在 Stackblitz 上创建一个示例,但它确实有效:https://stackblitz.com/edit/ic7f4z

这里有什么区别?这是因为 Stackblitz 使用 TypeScript 导入,而我使用 polyserve 而没有使用 TypeScript 吗?

更新:

我在 JSFiddle 上创建了相同的示例(请参阅 https://jsfiddle.net/sebastianroming/uer59cnw/6/ ),这里与我的机器上的相同:不起作用。随时取消注释注释行以获得控制台的输出。

谢谢!

最佳答案

使用 lit-elementpolyserve Highcharts 及其模块可以这样下载:

import 'highcharts';
import 'highcharts/modules/exporting';
import 'highcharts/modules/boost'
import 'highcharts/highcharts-more';

组件代码:

import { LitElement, html } from 'lit-element';

import 'highcharts';
import 'highcharts/modules/exporting';
import 'highcharts/modules/boost'
import 'highcharts/highcharts-more';

class ChartTest extends LitElement {

firstUpdated(changedProperties) {
this._enableChart();
}

render() {
return html`
<div id='container' style='width:500px;height:300px;border: 1px red solid;'>sfsdfs</div>
`;
}

_enableChart() {
Highcharts.chart(this.shadowRoot.querySelector('#container'), {
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
]
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
type: 'column'
}]
});
}

}
customElements.define('chart-test', ChartTest);

演示:

关于javascript - 将 Highcharts(和模块)与 lit-element 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56786792/

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