如何自定义 Flex 图表上的数据点?

发布于 2024-08-25 17:42:19 字数 817 浏览 3 评论 0原文

我有一个面积图,我希望显示数据点。我有一个 CircleItemRenderer,但这显示了默认描边和填充中的所有数据点。

1) 如何自定义 CircleItemRenderer 的显示? (而不是用橙色填充,我怎样才能改变颜色?

2)我怎样才能决定显示特定数据点的节点而不是其他数据点?例如,在导入图表数据的 .XML 文件中,我可能有一个变量 show_data_point,它是 true 或 false。

这是我当前的代码:

            <mx:AreaSeries
                yField="numbers"
                form="segment"
                displayName="area graph"
                areaStroke = "{darkblue}"
                areaFill="{blue}"
            >

            <mx:itemRenderer>
                    <mx:Component>
                            <mx:CircleItemRenderer/>
                    </mx:Component>
            </mx:itemRenderer>

              </mx:AreaSeries>      
        </mx:series>

非常感谢您的帮助!

I have an area graph and I'm looking to have the data points to be shown. I have a CircleItemRenderer, but this shows all of the datapoints in the default stroke and fill.

1) How do I customize the display of my CircleItemRenderer? (instead of it having an orange fill, how can I change the color?

2) How can I decide to show the node for specific data points but not for others? For example, in my .XML file that imports the data for the graph, I may have a variable show_data_point which is true or false.

Here's the current code I have:

            <mx:AreaSeries
                yField="numbers"
                form="segment"
                displayName="area graph"
                areaStroke = "{darkblue}"
                areaFill="{blue}"
            >

            <mx:itemRenderer>
                    <mx:Component>
                            <mx:CircleItemRenderer/>
                    </mx:Component>
            </mx:itemRenderer>

              </mx:AreaSeries>      
        </mx:series>

Thanks a lot for your help!

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

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

发布评论

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

评论(1

醉态萌生 2024-09-01 17:42:19
  1. 您可以实现自己的项目渲染器,该渲染器应实现 IDataRenderer 界面并成为 ProgrammaticSkin 的后裔。
  2. 根据文档,该系列有一种填充样式,应用于圆点的填充。
  1. You can implement your own item renderer that should implement IDataRenderer interface and be an ascendant of ProgrammaticSkin.
  2. According to documentation there is a fill style for the series which is applied to the fill of circle point.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文