Skip to content

Commit

Permalink
Fixup chart direction
Browse files Browse the repository at this point in the history
  • Loading branch information
OrdiNeu committed Feb 26, 2024
1 parent ccd6f31 commit 6be19c7
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/views/completeness/completeness.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createRef, useState, useEffect } from 'react';
import { useState, useEffect } from 'react';

// mui
// import { useTheme, makeStyles } from '@mui/styles';
Expand All @@ -15,7 +15,6 @@ import { CheckCircleOutline, WarningAmber, Person } from '@mui/icons-material';

// Test data
import { useSidebarWriterContext } from 'layout/MainLayout/Sidebar/SidebarContext';
import MainCard from 'ui-component/cards/MainCard';
import FieldLevelCompletenessGraph from './fieldLevelCompletenessGraph';

function Completeness() {
Expand Down Expand Up @@ -161,10 +160,10 @@ function Completeness() {
dataObject={numClinicalComplete || {}}
data="full_clinical_data"
dataVis=""
chartType="column"
chartType="bar"
height="400px; auto"
dropDown={false}
loading={undefined}
loading={isLoading}
orderByFrequency
cutoff={10}
/>
Expand All @@ -174,10 +173,10 @@ function Completeness() {
dataObject={numGenomicComplete || {}}
data="full_genomic_data"
dataVis=""
chartType="column"
chartType="bar"
height="400px; auto"
dropDown={false}
loading={undefined}
loading={isLoading}
orderByFrequency
cutoff={10}
/>
Expand Down

0 comments on commit 6be19c7

Please sign in to comment.