我正在尝试完成Gooddata.ui的intro tutorial。但是,我看不到任何图表。我可以看到正在加载子弹,但没有图表。
更具体地说:
我的代码看起来像这样(我从create-react-app中删除了所有内容):
import React, { Component } from 'react';
import { LineChart, BarChart, Table } from '@gooddata/react-components';
...
class App extends Component {
render() {
return (
<div className="App">
<div style={{ height: 300 }}>
<Table
projectId="xms7ga4tf3g3nzucd8380o2bev8oeknp"
measures={measures}
/>
</div>
<div style={{ height: 300 }}>
<LineChart
projectId="xms7ga4tf3g3nzucd8380o2bev8oeknp"
measures={measures}
trendBy={attribute}
config={{
colors: [ '#14b2e2']
}}
/>
</div>
</div>
);
}
}
export default App;
请,您能帮我发现问题吗?
答案 0 :(得分:0)
您似乎忘了添加以下代码行来加载CSS:
import '@gooddata/react-components/styles/css/main.css';
请参阅part 6 of the tutorial中的步骤2。