如何从 mx:LegendItem 获取 fillColor
我需要从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该返回给您填充的颜色。从
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.需要注意的是...
如果您使用 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."
您可以从图例项目中获取图表系列颜色作为
HTH
you can get Chart Series Color From Legend Item as
HTH