@spteck/fluentui-react-charts 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,6 +4,6 @@ export interface IDashboardProps {
4
4
  cardCharts: ICardChartContainer[];
5
5
  theme: Theme;
6
6
  containerWidth: number;
7
- containerHeight?: number;
7
+ containerHeight?: string;
8
8
  maxSpanRows?: number;
9
9
  }
@@ -3517,7 +3517,10 @@ var Dashboard = function Dashboard(_ref) {
3517
3517
  }
3518
3518
  return React__default.createElement(React__default.Fragment, null, React__default.createElement("div", {
3519
3519
  ref: containerRef,
3520
- className: styles.dashboardContainer
3520
+ className: styles.dashboardContainer,
3521
+ style: {
3522
+ height: containerHeight
3523
+ }
3521
3524
  }, renderCards));
3522
3525
  };
3523
3526