refactor(widgets): add missing line charts to Widget03
This commit is contained in:
parent
59d43f7ef2
commit
0c88adc9c8
@ -156,7 +156,11 @@ class Widgets extends Component {
|
|||||||
</Widget03>
|
</Widget03>
|
||||||
</Col>
|
</Col>
|
||||||
<Col xs={12} sm={6} md={3}>
|
<Col xs={12} sm={6} md={3}>
|
||||||
<Widget03 dataBox={() => ({ variant: 'twitter', followers: '973k', tweets: '1.792' })} />
|
<Widget03 dataBox={() => ({ variant: 'twitter', followers: '973k', tweets: '1.792' })} >
|
||||||
|
<div className="chart-wrapper">
|
||||||
|
<Line data={makeSocialBoxData(1)} options={socialChartOpts} height={90} />
|
||||||
|
</div>
|
||||||
|
</Widget03>
|
||||||
</Col>
|
</Col>
|
||||||
<Col xs={12} sm={6} md={3}>
|
<Col xs={12} sm={6} md={3}>
|
||||||
<Widget03 dataBox={() => ({ variant: 'linkedin', contacts: '500+', feeds: '292' })} >
|
<Widget03 dataBox={() => ({ variant: 'linkedin', contacts: '500+', feeds: '292' })} >
|
||||||
@ -166,7 +170,11 @@ class Widgets extends Component {
|
|||||||
</Widget03>
|
</Widget03>
|
||||||
</Col>
|
</Col>
|
||||||
<Col xs={12} sm={6} md={3}>
|
<Col xs={12} sm={6} md={3}>
|
||||||
<Widget03 dataBox={() => ({ variant: 'google-plus', followers: '894', circles: '92' })} />
|
<Widget03 dataBox={() => ({ variant: 'google-plus', followers: '894', circles: '92' })} >
|
||||||
|
<div className="chart-wrapper">
|
||||||
|
<Line data={makeSocialBoxData(3)} options={socialChartOpts} height={90} />
|
||||||
|
</div>
|
||||||
|
</Widget03>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
<CardGroup className="mb-4">
|
<CardGroup className="mb-4">
|
||||||
|
Loading…
Reference in New Issue
Block a user