Search the Community
Showing results for tags 'trendlines'.
Found 5 results
-
Hi everyone, I am new to fusionChart and am taking back a developpement done by one of my colleague. He previsouly used a mspline type of chart which I transformed into a timeserie chart. In his previous chart, he was using trendlines which were shown successfully on the graph. I have not changed the code of the generation of the trendlines but they do not appear in my timeserie chart anymore. Would anyone know why? Maybe trendlines are not compatible with timeseries charts? Thanks for your help.
-
TrendLines not behaving as expected with msstackedcolumn2dlinedy
mayur posted a topic in General usage
I am trying to use trendLines in msstackedcolumn2dlinedy. i wanted draw trendLines on secondary axis. but it seems it is bydefault drawing trendline on primary y axis. when i remove trendlines, max primary y axis value is 90. but when i add trendline, max primary y axis value shoots to 7k. That does mean in below case primary y axis trendLine is used even when i have mapped each trendLine to secondary axis. (parentYAxis: 'S'). Could you please help me in this scenario. Also can i draw area chart on secondary axis? Thanks in Advance... Code: FusionCharts.ready(function () { var revenueChart = new FusionCharts({ type: 'msstackedcolumn2dlinedy', renderAt: 'chart-container', width: '500', height: '300', dataFormat: 'json', dataSource: { "chart": { "divlinecolor": "CCCCCC", "alignLegendWithCanvas": "0", "showvalues": "0", "pYAxisName": "Bar Chart", "sYAxisName": "Line Chart" }, "categories": [ { "category": [ { "label": "Jan" }, { "label": "Feb" }, { "label": "Mar" }, { "label": "Apr" } ] } ], "dataset": [ { "dataset": [ { "seriesname": "Purchase1", "data": [ { "value": 21 }, { "value": 18 }, { "value": 27 }, { "value": 25 } ] }, { "seriesname": "Purchase2", "data": [ { "value": 63 }, { "value": 10 }, { "value": null }, { "value": null } ] } ] } ], "lineset": [ { "seriesname": "revenue", "data": [ { "value": 6173 }, { "value": 4153 }, { "value": 7109 }, { "value": 6142 } ] } ], "trendLines": [ { "line": [ { "startValue": 6104.8, "endValue": 6133.7, "displayValue": " ", "color": "6baa01", "alpha": "80", "dashed": "1", "parentYAxis": "S" } ] } ] } }); revenueChart.render(); }); -
How to construct multiseries line stack column chart on dual y axis
mayur posted a topic in General usage
Hi, i want to construct a multi series line and single stacked column chart with dual y axis, i want multi series line, trend lines on primary axis and single stacked column on secondary axis. To achieve the above i found one chart type: msstackedcolumn2dlinedy: issue with this chart is i cannot switch axis for stacked column and line series How can i achieve this chart? an example would be great...- 2 replies
-
- trendlines
- stacked
-
(and 2 more)
Tagged with:
-
Hi, I am using a multi-series area graph, while using trendlines my display value of trendlines overlaps in case they are on same scale, putting them on different sides(i.e. left and right) make the left one overlap with the y scale. Is there a way to handle this issue.
-
Hi Everyone, I would like to know that is there any way where I can show the Legend Value at the bottom of the chart along with the Legends? Please see in the attached screen shot. I would like see name "Target" either along with legends or simply at bottom of the chart if that is possible? Thanks