问题标签 [flex-charts]
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 - ColumnChart:如何摆脱柱子后面的阴影?
我对ColumnChart有几个问题请(下面的截图和代码):
- 如何摆脱每列后面绘制的阴影?我试过添加
<mx:filters />
,但没有帮助 - 如何摆脱列之间的填充,使它们在侧面相互接触(如楼梯)已解决
如何摆脱警告
/li>Data binding will not be able to detect assignments to "horizontalAxis"
?我尝试移动该代码块以摆脱axis
参数,但找不到正确的位置。解决了
更新:
Sunil 帮助解决了问题 #3,谢谢!
问题 #2 解决了columnWidthRatio="1"
所以现在我只需要知道,如何摆脱阴影 - 根据问题标题:-)
actionscript-3 - Flex 柱形图叠加堆叠顺序
我在 flex 中有一个柱形图,它有很多列,用户可以选择按列顺序显示或叠加显示。根据用户屏幕,它使图表更具可读性。但是,然后我可以根据数据进行任何调用以更改叠加顺序。即最大的数据列在后面,被下一个最大的列覆盖,依此类推,直到最小的列位于顶部。当前默认行为一些小列被较大的列所掩盖,我不想更改 alpha 值来执行此操作。(首先感谢flashharry!因为我在一些讨论论坛中看到这个问题2-3 次,但在任何地方都没有回答)。这在弹性柱形图中可能吗???
任何帮助将不胜感激。
提前致谢..
@Serge他
代码示例:- 在下面的代码中,最近两个月的利润小于费用,所以我们看不到该系列,因为它在费用系列之后。我希望更大的价值永远落后于较小的价值
actionscript-3 - Flex 列集未正确显示
我正在开发一个图表,其中我需要有多个列集,但 flex 给了我奇怪的结果。我正在使用欧芹框架。
这是我的 mxml 代码
在我的演示模型中,我返回列系列,在以下代码中显示
The problem i am getting here is "In first column there should be 4 stacked column series but flex drops 1 out of 4 stacked column series ( i am able to see only 3 or 2 columns it drops remaining one). I have debugged my code and the data is coming perfectly fine. If i remove all the column sets and write like then it gives me correct result for the first stacked column. But as i want the second column also which will have summation of all data at one place. for e.g. 1st stacked column will be showing quarterwise profit amounts and the second column i want to have to display total profit throughout the year."
You can see the charts here
- without using columnsets and binding series directly in definition - as you can see the quarters are dropped here. in both the charts data source is same
I am not knowing what i am doing wrong here. Any kind of help will be appreciated. Thanks in advance.
apache-flex - 如何在 ColumnSeries 中使用 filterFunction
我有一组数据,如下所示:
我想创建一个如下所示的图表,其中每个位置以不同的颜色显示并按年份分组:
我在想我必须使用“mx:ColumnSeries”标签并使用它的“filterFunction”属性来定义如何将每个位置的数据过滤为一个单独的系列,但我不知道该怎么做。有没有任何男孩有任何建议或示例代码来创建这样的图表?谢谢
apache-flex - 在 dataProvider 更改标签更改图表不
我有一个 flex 应用程序,它由几个选项卡组成。一个选项卡包含一个柱形图和一个数据网格,其中包含结果集合(选择另一个数据网格结果后,图表中的另一条线会显示)。但是,在我转到另一个选项卡并返回后,这种情况就会停止。此时,选择datagrid line后,chart的dataProvider发生变化,导致labels发生变化,但chart保持不变。
选项卡导航是通过状态实现的,如下所示:
.....................
单击导航按钮会导致状态更改。什么可能导致问题?
javascript - Wijmo 5 flex 图表不适用于淘汰赛 foreach 绑定
我想动态更新图表上的值(或添加额外的图例项),因此我不能使用flexchart 示例页面中的“硬编码”html 标记。问题是 wjFlexChart 块内的 foreach 绑定根本不起作用。这是我的代码:
看法:
视图模型:
有任何想法吗?
javascript - wjFlexChart 绑定(wijmo 5 flex 图表)是否有 $index 迭代器?
据我了解,data-bind="wjFlexChart: { itemsSource: data, bindingX: 'week' }
遍历数组中的所有项目data
(如 foreach 淘汰赛绑定)。
我的问题是:
1)如何访问当前元素 ID($index 不起作用)?
2) $data, $parent 是否与 $data, $parent 相同,用于淘汰 foreach 绑定?