如何从 mx:LegendItem 获取 fillColor

发布于 2024-09-01 01:49:18 字数 136 浏览 2 评论 0原文

我需要从 legendItem 获取填充颜色,但是

lItem.getStyle("fill") 

返回的颜色与实际 legendItem 标记颜色不同。关于我在这里做错了什么的任何指示吗?

I need to get the fillcolor from a legendItem, howerver doing

lItem.getStyle("fill") 

returns a different color than the actual legendItem marker color. Any pointers on what am I doing wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

软甜啾 2024-09-08 01:49:18

这应该返回给您填充的颜色。从 lItem.getStyle("fill") 返回的变量类型是 SolidColor。

This should return to you the color of the fill. The variable type you get back from lItem.getStyle("fill") is SolidColor.

兮颜 2024-09-08 01:49:18

需要注意的是...

如果您使用 fillFunction 或 fills 来设置图表的填充颜色,则图例将与图表颜色不同步。 :(

http://livedocs.adobe.com/flex /3/html/help.html?content=charts_formatting_07.html
“如果您使用 fills 属性或 fillFunction 定义图表项的填充,并且需要图例,则必须手动为该图表创建 Legend 对象。”

Something to be aware of ...

If you use the fillFunction or fills to set the fill color of your chart, then the Legend will be out of synch with the chart color. :(

http://livedocs.adobe.com/flex/3/html/help.html?content=charts_formatting_07.html
"If you use the fills property or the fillFunction to define the fills of chart items, and you want a legend, you must manually create the Legend object for that chart."

无风消散 2024-09-08 01:49:18

您可以从图例项目中获取图表系列颜色作为

var chartElement:ChartElement = legendItem.element as ChartElement;
var chartElementSolidColor:SolidColor = chartElement.getStyle("fill") as SolidColor;
var chartElementColor:uint = chartElementSolidColor.color; 

HTH

you can get Chart Series Color From Legend Item as

var chartElement:ChartElement = legendItem.element as ChartElement;
var chartElementSolidColor:SolidColor = chartElement.getStyle("fill") as SolidColor;
var chartElementColor:uint = chartElementSolidColor.color; 

HTH

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文