From b0f046a1c85f4d19aa3b234bd3777873d4dbde09 Mon Sep 17 00:00:00 2001 From: mahdi andalib Date: Wed, 2 Mar 2022 16:21:48 +0330 Subject: [PATCH] update --- src/components/FileManager/index.js | 17 +++++++++++++++-- src/components/SemiDonut/index.js | 10 ++++++---- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/src/components/FileManager/index.js b/src/components/FileManager/index.js index abb2fa5..edb10e6 100644 --- a/src/components/FileManager/index.js +++ b/src/components/FileManager/index.js @@ -12,12 +12,14 @@ import Folderlists from "../Folderlist"; import graySearchIcon from "./images/gray-search-icon.svg"; import arrowLeft from "./images/arrow-left.svg"; +import BasicTable from "../ReactTable4/index"; +import SemiDonut from "../SemiDonut"; const FileManager = () => { return (
{/* ? right Section */} -
+
{/* ? breadCrumb */}
@@ -81,11 +83,22 @@ const FileManager = () => {
{/* folderLists */} + {/* ? pageTitle */} +
+ {/* */} + +
{/* left Section */} -
fsad
+
+ + +
); }; diff --git a/src/components/SemiDonut/index.js b/src/components/SemiDonut/index.js index 17845af..227378a 100644 --- a/src/components/SemiDonut/index.js +++ b/src/components/SemiDonut/index.js @@ -11,6 +11,9 @@ class SemiDonut extends Component { chart: { type: "donut", }, + legend: { + show: false, + }, plotOptions: { pie: { startAngle: -90, @@ -20,7 +23,7 @@ class SemiDonut extends Component { }, grid: { padding: { - bottom: -80, + bottom: 0, }, }, responsive: [ @@ -37,8 +40,7 @@ class SemiDonut extends Component { }, ], }, - - series: [44, 44, 44, 44, 44], + series: [44, 44, 44, 44], }; } @@ -48,7 +50,7 @@ class SemiDonut extends Component { options={this.state.options} series={this.state.series} type="donut" - height="250" + height="320px" width="100%" /> );