boxplot箱体超限
What problem does this feature solve?
在画箱线图boxplot时,指定y轴范围后,箱体超出图表上下限
What does the proposed API look like?
想请教一下有无解决的方法
@rock-Ma It seems you are not using English, I've helped translate the content automatically. To make your issue understood by more people and get helped, we'd like to suggest using English next time. 🤗
TRANSLATED
TITLE
The boxplot box is out of limit
BODY
What problem does this feature solve?
When drawing a boxplot, after specifying the y-axis range, the box exceeds the upper and lower limits of the chart.
What does the proposed API look like?
I would like to ask if there is any solution
@rock-Ma Please provide a demo for the issue either with Official Editor, CodePen, CodeSandbox or JSFiddle.
option = {
title: [
{
text: '这是一个标题',
left: 'center'
},
],
dataset: [
{
source: [
[850, 740, 900, 1070, 930, 850, 950, 980, 980, 880, 1000, 980, 930, 650, 760, 810, 1000, 1000, 960, 960],
[960, 940, 960, 940, 880, 800, 850, 880, 900, 840, 830, 790, 810, 880, 880, 830, 800, 790, 760, 800],
[880, 880, 880, 860, 720, 720, 620, 860, 970, 950, 880, 910, 850, 870, 840, 840, 850, 840, 840, 840],
[890, 810, 810, 820, 800, 770, 760, 740, 750, 760, 910, 920, 890, 860, 880, 720, 840, 850, 850, 780],
[890, 840, 780, 810, 760, 810, 790, 810, 820, 850, 870, 870, 810, 740, 810, 940, 950, 800, 810, 870]
]
},
{
transform: {
type: 'boxplot',
config: { itemNameFormatter: 'expr {value}' }
}
},
{
fromDatasetIndex: 1,
fromTransformResult: 1
}
],
tooltip: {
trigger: 'item',
axisPointer: {
type: 'shadow'
}
},
xAxis: {
type: 'category',
boundaryGap: true,
nameGap: 30,
},
yAxis: {
type: 'value',
max:800,
},
series: [
{
name: 'boxplot',
type: 'boxplot',
datasetIndex: 1
}
]
};
When I set the "max" for the y-axis, the excess box is still displayed