提交代码
This commit is contained in:
parent
a873a14024
commit
29a64717d1
|
@ -237,25 +237,29 @@ const initLineVandDChart = (data, xData) => {
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: 'item',
|
trigger: 'item',
|
||||||
},
|
},
|
||||||
|
grid:{
|
||||||
|
right: '20%', // 保留足够的空间
|
||||||
|
left: '5%',
|
||||||
|
top: '10%',
|
||||||
|
bottom: '10%'
|
||||||
|
},
|
||||||
legend: {
|
legend: {
|
||||||
type: 'scroll',
|
type: 'scroll',
|
||||||
orient: 'vartical',
|
orient: 'vertical', // 修正为 vertical
|
||||||
// x: "right",
|
|
||||||
top: 'center',
|
top: 'center',
|
||||||
right: '15',
|
right: '15%', // 这里需要加上百分比符号
|
||||||
// bottom: "0%",
|
|
||||||
itemWidth: 16,
|
itemWidth: 16,
|
||||||
itemHeight: 8,
|
itemHeight: 8,
|
||||||
itemGap: 10,
|
itemGap: 10,
|
||||||
textStyle: {
|
textStyle: {
|
||||||
color: '#000000',
|
color: '#000000',
|
||||||
fontSize: 100,
|
fontSize: 12, // 建议调整为合适的字体大小,100 可能过大
|
||||||
fontWeight: 0,
|
fontWeight: 'normal' // 通常使用 'normal' 或 'bold'
|
||||||
},
|
},
|
||||||
data: xData,
|
data: xData,
|
||||||
},
|
},
|
||||||
polar: {
|
polar: {
|
||||||
center: ['30%', '56%'],
|
center: ['40%', '56%'],
|
||||||
},
|
},
|
||||||
angleAxis: {
|
angleAxis: {
|
||||||
interval: 1,
|
interval: 1,
|
||||||
|
@ -309,7 +313,7 @@ const initLineVandDChart = (data, xData) => {
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
type: 'pie',
|
type: 'pie',
|
||||||
center: ['30%', '56%'],
|
center: ['40%', '56%'],
|
||||||
radius: ['5%', '10%'],
|
radius: ['5%', '10%'],
|
||||||
hoverAnimation: false,
|
hoverAnimation: false,
|
||||||
labelLine: {
|
labelLine: {
|
||||||
|
@ -336,7 +340,7 @@ const initLineVandDChart = (data, xData) => {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'pie',
|
type: 'pie',
|
||||||
center: ['30%', '56%'],
|
center: ['40%', '56%'],
|
||||||
radius: ['80%', '85%'],
|
radius: ['80%', '85%'],
|
||||||
hoverAnimation: false,
|
hoverAnimation: false,
|
||||||
labelLine: {
|
labelLine: {
|
||||||
|
@ -366,7 +370,7 @@ const initLineVandDChart = (data, xData) => {
|
||||||
{
|
{
|
||||||
stack: 'a',
|
stack: 'a',
|
||||||
type: 'pie',
|
type: 'pie',
|
||||||
center: ['30%', '56%'],
|
center: ['40%', '56%'],
|
||||||
radius: ['20%', '80%'],
|
radius: ['20%', '80%'],
|
||||||
roseType: 'area',
|
roseType: 'area',
|
||||||
zlevel: 10,
|
zlevel: 10,
|
||||||
|
@ -515,14 +519,14 @@ const initPieChart2 = (seriesData) => {
|
||||||
grid: {
|
grid: {
|
||||||
top: '15%',
|
top: '15%',
|
||||||
left: 0,
|
left: 0,
|
||||||
right: '1%',
|
right: '15%',
|
||||||
bottom: 5,
|
bottom: 5,
|
||||||
containLabel: true,
|
containLabel: true,
|
||||||
},
|
},
|
||||||
legend: {
|
legend: {
|
||||||
orient: 'vertical',
|
orient: 'vertical',
|
||||||
top: 'center',
|
top: 'center',
|
||||||
right: 50,
|
right: "10%",
|
||||||
textStyle: {
|
textStyle: {
|
||||||
align: 'left',
|
align: 'left',
|
||||||
verticalAlign: 'middle',
|
verticalAlign: 'middle',
|
||||||
|
@ -549,7 +553,7 @@ const initPieChart2 = (seriesData) => {
|
||||||
{
|
{
|
||||||
name: '需求类型占比',
|
name: '需求类型占比',
|
||||||
type: 'pie',
|
type: 'pie',
|
||||||
center: ['30%', '50%'],
|
center: ['40%', '50%'],
|
||||||
radius: ['40%', '65%'],
|
radius: ['40%', '65%'],
|
||||||
label: {
|
label: {
|
||||||
normal: {
|
normal: {
|
||||||
|
|
Loading…
Reference in New Issue