echarts VisualMap 在多个series下设置错误

tez616oj  于 2022-11-03  发布在  Echarts
关注(0)|答案(2)|浏览(219)

Version

5.0.2

https://www.makeapie.com/editor.html?c=xtk0VJl99N&v=1

Steps to reproduce

option = {
    legend: {},
    tooltip: {},
	dataset: {
	    source: [
		    ['product', '2012', '2013', '2014', '2015'],
		    ['Matcha Latte', 41.1, 30.4, 65.1, 53.3],
		    ['Milk Tea', 86.5, 92.1, 85.7, 83.1],
		    ['Cheese Cocoa', 24.1, 67.2, 79.5, 86.4],
	    ],
	},
	xAxis: [{ type: 'category' }],
	yAxis: [{
		gridIndex: 0,
		splitNumber: 5,
	}],
	series: [
		{ type: 'bar' },
		{ type: 'bar' },
	],
	visualMap: [
		{
			type: 'piecewise',
			dimension: 2,
			outOfRange: { color: '#5470c6' },
			pieces: [
				{ lt: 40, color: 'yellow' },
			],
		},
	],
};

What is expected?

小于40的柱子颜色为黄色

What is actually happening?

同series的柱子大于40的也为黄色了

ki0zmccv

ki0zmccv1#

Hi! We've received your issue and please be patient to get responded. 🎉
The average response time is expected to be within one day for weekdays.

In the meanwhile, please make sure thatyou have posted enough image to demo your request. You may also check out the API and chart option to get the answer.

If you don't get helped for a long time (over a week) or have an urgent question to ask, you may also send an email to dev@echarts.apache.org . Please attach the issue link if it's a technical question.

If you are interested in the project, you may also subscribe our mailing list .

Have a nice day! 🍵

chy5wohz

chy5wohz2#

@94385605 It seems you are not using English, I've helped translate the content automatically. To make your issue understood by more people, we'd like to suggest using English next time. 🤗

TRANSLATED

TITLE

VisualMap is set incorrectly under multiple series

BODY

Version

5.0.2

https://www.makeapie.com/editor.html?c=xtk0VJl99N&v=1

Steps to reproduce

option = {
    legend: {},
    tooltip: {},
dataset: {
source: [
['product', '2012', '2013', '2014', '2015'],
['Matcha Latte', 41.1, 30.4, 65.1, 53.3],
['Milk Tea', 86.5, 92.1, 85.7, 83.1],
['Cheese Cocoa', 24.1, 67.2, 79.5, 86.4],
],
},
xAxis: [{ type:'category' }],
yAxis: [{
gridIndex: 0,
splitNumber: 5,
}],
series: [
{type:'bar' },
{type:'bar' },
],
visualMap: [
{
type:'piecewise',
dimension: 2,
outOfRange: {color:'#5470c6' },
pieces: [
{lt: 40, color:'yellow' },
],
},
],
};

What is expected?

The color of columns less than 40 is yellow

What is actually happening?

The columns of the same series that are greater than 40 are also yellow

相关问题