gpt4 book ai didi

javascript - 将高度设置为 100% 时,React Apexchart 未采用其父高度

转载 作者:行者123 更新时间:2023-12-03 23:35:14 24 4
gpt4 key购买 nike

我正在处理 react-apexcharts并尝试将高度设置为图表的 100%,但它不接受其父级的高度,而是显示其最小高度 445px .即使像这样设置高度 100%,我也无法理解发生了什么,

  chart: {
height: "100%",
},

这是我的完整代码
import React from "react";
import ReactApexChart from "react-apexcharts";


class ApexChart extends React.Component {
constructor(props) {
super(props);
this.state = {

series: [
{
name: 'member',
data: [64, 55, 21, 18, 76, 41 , 44, 14, 66, 32]
}, {
name: 'Partcipants',
data: [53, 32, 42, 22, 29, 80, 16, 49, 78, 11]
}],
options: {
colors: ['#519ca5', '#d5e2c0'],
chart: {
height: "100%",
},
plotOptions: {
bar: {
horizontal: false,
dataLabels: {
position: 'top',
},
}
},
dataLabels: {
enabled: true,
offsetX: -6,
style: {
fontSize: '12px',
colors: ['#fff']
}
},
stroke: {
show: true,
width: 1,
colors: ['#fff']
},
xaxis: {
categories: ['a','b','c','d','f','h','i','j','k','l'],
},
legend:{
position: 'right',
markers: {
width: 24,
height: 24,
strokeWidth: 0,
strokeColor: '#fff',
fillColors: undefined,
radius: 2,
customHTML: undefined,
onClick: undefined,
offsetX: 0,
offsetY: 0
},
}
},
};
}

render() {
return (
<div id="chart">
<ReactApexChart options={this.state.options} series={this.state.series} type="bar" height={430}/>
</div>
);
}
}

export default ApexChart;
import React from 'react';
import Policychart from "./components/Policychart"

function App() {
return (
<div className="App">
<header className="App-header">
</header>
<div className="wrapper">
<Policychart/>
</div>
</div>
);
}

export default App;
.wrapper{
height: 320px;
width: 940px;
margin: 180px auto;
background: rgba(240, 248, 255, 0.9);
padding: 40px;
}

.apexcharts-legend-series{
display: flex;
align-items: center;
margin-top: 16px !important;
}

.apexcharts-legend-text{
padding-left: 8px;
}

我想要的是图表的高度必须是 .wrapper 的高度这是 320px目前,我想从这里控制它。

最佳答案

你只需要设置你的ReactApexChart组件到 100%不是 430 (您可以删除options 对象内的高度)然后您可以通过.wrapper 控制图表高度CSS 类

<ReactApexChart ... height="100%" />

看直播 codeSandbox例子。

关于javascript - 将高度设置为 100% 时,React Apexchart 未采用其父高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59790510/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com