问题标签 [flex-charting]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
apache-flex - 使用 Flex ColumnChart,有没有办法将数据提示集中在列上
我正在使用带有自定义dataTipRenderer的 Flex ColumnChart 。我可以使用 dataTipRenderer 应用漂亮的皮肤,但不确定如何将数据提示移动到中心。
有没有办法让图表将数据提示放在列上而不是图表的正常右上角对齐?
代替:
我想:
欢迎任何涉及 HitData 等的想法。
apache-flex - 弹性图表上轴标签的位置,以及如何相对于它们定位事物
我正在使用位于 BarChart 右侧的 AxisRenderer,并且正在寻找一种方法来为 AxisRenderer 中的值在它们上方定位标题。
如何在轴渲染器中找到标签的位置?看起来 AxisRenderer.width 返回图表的宽度,而 AxisRenderer.x 返回整个图表的边缘。
这是一张图片的尝试:
我试图将标题定位在 AxisRenderer 定位的“轴值”之上。基本上,对于一个非绝对定位的轴,你如何确定它在哪里?
apache-flex - 在 Flex Charting 中对齐多个图表
我在 Flex Charting (3.x) 中有多个折线图。图表(和图表数量)是动态生成的,属于“A 型”或“B 型”。Y 轴上的数据类型对于 A 类和 B 类是不同的。x 轴是时间。
每个图表都放置在自己的 VBox 中(还有一些其他的东西),这些 VBox 构成了 A 型或 B 型的更大画布。这个 VBox 有一个绝对的 X 位置。
不同图表排列的优先级非常高,以便可以(及时)进行比较。
最终发生的是,某些图表的垂直轴比其他图表占用更多的宽度,因此图表不再及时对齐。
我试过播放VerticalAxisRenderers/AxisRenderer
宽度,但没有效果。
任何建议将不胜感激。
apache-flex - 弹性图表试用
为什么我的 Flex 图表应用程序上有一个水印,上面写着“Flex Charting Trial”?
apache-flex - Flex Charts 中的内存泄漏
我创建了一个在 UI 中显示 3-4 个图表的 UI。
我注意到以下
一旦这些图表加载,IE 内存就会飙升至大约 400 Mb,这是可以理解的,因为其中一些图表就像显示多达一千行的表格。
我注意到我刷新这些图表的次数越多,IE 内存增加的次数就越多。
通过多次简单的代码演练,我找不到任何泄漏或任何大小正在增加的数据结构。我正在使用 Flex builder 2。我有几个问题:
- Flash什么时候释放内存?我可以 IE 将该内存返回给操作系统吗?
Flash中是否存在已知的内存泄漏?- 有哪些工具可以帮助我?
- 是否有任何编程最佳实践,例如将未使用的对象显式设为空,有帮助吗?
非常感谢您。
我还有一个问题,IE 似乎根本不会释放任何内存,除非它被最小化?
apache-flex - breaking up line chart in flex charting
I am wondering how will i proceed with the following requirement. I need to create a line chart of business data of the last 8 quarters. It is easy, but the requirement is that, there should not be a connection between last year's Q4 and this years Q1. In effect, using the same array collection i need to split the line chart so that it looks like two diffferent lines on the same chart. Any idea how to proceed with it.
Thanks, PK
apache-flex - Drawing a dashed line across the tops of Flex Column Chart
Please find the below code
This code is drawing a colum chart with two columns and drawing a line across the top of both columns. I have two requirements :
- the line need to be dashed
- as of now the line starts from top right corner of the first column to the same corner of the second column. How can i shift the line to the left, so that it starts from center of first column to center of second column.
Regards, PK
apache-flex - 如何在 FLEX 中将单击事件处理程序添加到 BarChart 的垂直轴?
有谁知道是否可以将单击事件处理程序添加到 flex 条形图的垂直轴(或任何轴)?如果我将处理程序添加到 BarChart 本身,除非您单击实际图表,而不是轴,否则事件似乎不会触发。任何帮助表示赞赏,如果您需要更多信息,请告诉我。谢谢
apache-flex - 在 HDdividedBox 中一次移动多个分隔线
我正在尝试在图表下方显示带有可拖动视口的小地图。我基本上有这个来控制图表的视口:
使用以下脚本:
问题是,一次只有一个分隔线实际移动。我发现,如果我在移动下一个分隔线之前设置了大约 50 毫秒的超时,那么两个分隔线都会移动。但是,这似乎是一种相当笨拙的方法,并且容易出错。
任何人都知道是否可以同时移动 HDividedBox 中的两个分隔线,还是我应该采取另一种方法?
apache-flex - 在 Adobe Flex 的 itemrenderer 中获取填充颜色
我正在编写一个自定义项目渲染器来在我的应用程序中渲染列系列。它是一个堆叠图表,我想为两个列系列使用相同的项目渲染器。堆栈中每个系列的颜色不同,并且在两个系列的“填充”属性中设置。我的疑问是如何从项目渲染器获取列系列的填充属性中指定的颜色。如果这可行,那么我可以很好地为两个系列使用相同的渲染器。
提前致谢,阿努普