How to use the @patternfly/react-charts.ChartThemeColor.multiOrdered function in @patternfly/react-charts

To help you get started, weā€™ve selected a few @patternfly/react-charts examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github openshift / console / frontend / packages / ceph-storage-plugin / src / components / dashboard-page / storage-dashboard / breakdown-card / breakdown-chart.tsx View on Github external
labelComponent={}
            orientation="horizontal"
            symbolSpacer={7}
            gutter={10}
            height={50}
            style={{ labels: { fontSize: 8 } }}
          />
        }
        height={60}
        padding={{
          bottom: 35,
          top: 0,
          right: 0,
          left: 0,
        }}
        themeColor={ChartThemeColor.multiOrdered}
      >
         ''}
        />
        {chartData}
      
    
  );
};