Skip to content

Commit bf213ca

Browse files
Merge pull request #4818 from OneCommunityGlobal/veda-sentiment-breakdown-chart
Veda Sentiment Breakdown donut chart
2 parents 4316d21 + 50ef528 commit bf213ca

3 files changed

Lines changed: 1104 additions & 1 deletion

File tree

src/components/LBDashboard/LBDashboard.jsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import {
1818

1919
import DemandOverTime from './LbAnalytics/DemandOverTime/DemandOverTime';
2020
import ReviewWordCloud from './ReviewWordCloud/ReviewWordCloud';
21+
import SentimentBreakdownDonutChart from './SentimentBreakdownDonutChart/SentimentBreakdownDonutChart';
2122
import { CompareBarGraph } from './BarGraphs/CompareGraphs';
2223

2324
import httpService from '../../services/httpService';
@@ -505,7 +506,14 @@ export function LBDashboard() {
505506
</AnalysisSection>
506507

507508
<AnalysisSection title="Insights from Reviews" darkMode={darkMode}>
508-
<ReviewWordCloud darkMode={darkMode} />
509+
<Row xs="1" md="2" className="g-3">
510+
<Col>
511+
<SentimentBreakdownDonutChart darkMode={darkMode} />
512+
</Col>
513+
<Col>
514+
<ReviewWordCloud darkMode={darkMode} />
515+
</Col>
516+
</Row>
509517
</AnalysisSection>
510518
</Container>
511519
);

0 commit comments

Comments
 (0)