Gooddata.UI-图表未显示,表格未设置格式

时间:2018-09-19 09:00:35

标签: gooddata

我正在尝试完成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;

请,您能帮我发现问题吗?

1 个答案:

答案 0 :(得分:0)

您似乎忘了添加以下代码行来加载CSS:

import '@gooddata/react-components/styles/css/main.css';

请参阅part 6 of the tutorial中的步骤2。