如何在运行时强制重新绘制 Flex 图表

发布于 2024-08-26 17:24:21 字数 852 浏览 4 评论 0原文

我有一个柱形图,它使用标签函数来格式化垂直轴。我添加了一个按钮,并希望在单击该按钮时重新绘制轴(或图表)。目前,图表轴仅在最初添加到视图状态时才呈现正常。

我有一个函数可以在最初创建图表后设置各种属性。在那里,我尝试了所有这些:

myChart.verticalAxis.dataChanged();
myChart.validateNow();
myChart.validateDisplayList();
myChart.validateProperties();
myChart.invalidateDisplayList();
myChart.invalidateProperties();

但它们不会更改轴格式。我该怎么做?

轴的 MXML 代码为:

< mx:LinearAxis id="verticalAxis" labelFunction="vAxisFormat"/>

标签函数为:

    private function vAxisFormat(labelValue:Number, previousValue:Object, axis:IAxis):String {
        axis.getLabelEstimate();
        if (_scale == 1){
            return currencyFormatter.format(labelValue/_scale); 
        }else {
            return numberFormatter.format(labelValue/_scale);
        }   
    }

I have a column chart that uses a label function to format the vertical axis. I added a button and want the axis (or chart) to redraw when the button is clicked. Right now, the chart axis renders OK only when initially added to the view state.

I have a function that sets various properties after the chart is initially created. In there, I have tried all these:

myChart.verticalAxis.dataChanged();
myChart.validateNow();
myChart.validateDisplayList();
myChart.validateProperties();
myChart.invalidateDisplayList();
myChart.invalidateProperties();

But they do not change the axis formatting. How can I do this?

The MXML code for the axis is:

< mx:LinearAxis id="verticalAxis" labelFunction="vAxisFormat"/>

The label function is:

    private function vAxisFormat(labelValue:Number, previousValue:Object, axis:IAxis):String {
        axis.getLabelEstimate();
        if (_scale == 1){
            return currencyFormatter.format(labelValue/_scale); 
        }else {
            return numberFormatter.format(labelValue/_scale);
        }   
    }

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

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

发布评论

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

评论(1

醉殇 2024-09-02 17:24:21

尝试更新数据提供程序。这将重新绘制图形,以及所有组件。

示例:

数组集合
arr.refresh();

XML
char.dataprovider = xmlData

问候

Try updating the data provider. This redraws the graph, so all the components.

Example:

ArrayCollection
arr.refresh ();

XML
char.dataprovider = xmlData

regars

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