﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>FusionCharts Forum / FusionCharts/FusionMaps for FileMaker / Suggestions &amp; Requests  </title><generator>InstantForum.NET v4.1.4</generator><description>FusionCharts Forum</description><link>http://www.fusioncharts.com/forum/</link><webMaster>support@fusioncharts.com</webMaster><lastBuildDate>Tue, 02 Dec 2008 06:11:56 GMT</lastBuildDate><ttl>20</ttl><item><title>Improved Trendlines</title><link>http://www.fusioncharts.com/forum/Topic5054-50-1.aspx</link><description>Two suggestions for improving trendlines. The first should be easier. &lt;br&gt;&lt;br&gt;1. It would suggest that trend lines should display regardless of the y-axis range. Currently, they do not display at all if the y-axis is not wide enough for the trendline endpoints to touch left &amp; right edges of the chart. Seems as though it should be simple enough to clip them at the top or bottom edge (displaying whatever portion of the line would be visible). Otherwise it's often necessary to make the y-axis very large and detracts from the chart.&lt;br&gt;&lt;br&gt;Here's a couple of examples to illustrate the point.&lt;br&gt;&lt;br&gt;Trendline not visible:&lt;br&gt;(There's a trendline in this URL but it doesn't display because it's left edge is below the yaxis min value)&lt;br&gt;[quote]&lt;br&gt;?v=free&amp;sep=;&amp;chart=[chartType=Line2D;chartWidth=518;chartHeight=400]&lt;br&gt;&amp;chartParams=[caption=Widgets Produced;subCaption=Past 6 weeks;&lt;br&gt;yAxisMinValue=0;yAxisMaxValue=20;formatNumber=0;rotateNames=1;numDivLines=4;numVDivLines=4;&lt;br&gt;animation=0;showOnTop=1;showShadow=0;]&lt;br&gt;&amp;labels=1/6 - 1/13;1/13 - 1/20;1/20 - 1/27;1/27 - 2/3;2/3 - 2/10;2/10 - 2/17&lt;br&gt;&amp;data=1;3;5;12;18;45&lt;br&gt;&amp;trendlines=[startValue=-5.4286;endValue=33.4284;color=FF0000;displayValue=Trend;]&lt;br&gt;[/quote]&lt;br&gt;&lt;br&gt;Trendline visible:&lt;br&gt;(Now it displays once the y axis range is increased)&lt;br&gt;[quote]&lt;br&gt;?v=free&amp;sep=;&amp;chart=[chartType=Line2D;chartWidth=518;chartHeight=400]&lt;br&gt;&amp;chartParams=[caption=Widgets Produced;subCaption=Past 6 weeks;&lt;br&gt;yAxisMinValue=-10;yAxisMaxValue=20;formatNumber=0;rotateNames=1;numDivLines=5;numVDivLines=4;&lt;br&gt;animation=0;showOnTop=1;showShadow=0;]&lt;br&gt;&amp;labels=1/6 - 1/13;1/13 - 1/20;1/20 - 1/27;1/27 - 2/3;2/3 - 2/10;2/10 - 2/17&lt;br&gt;&amp;data=1;3;5;12;18;45&lt;br&gt;&amp;trendlines=[startValue=-5.4286;endValue=33.4284;color=FF0000;displayValue=Trend;]&lt;br&gt;[/quote]&lt;br&gt;&lt;br&gt;So basically, I'd like to see the visible portion of the trendline in the first example even though it wouldn't touch the left edge of the chart.&lt;br&gt;&lt;br&gt;2. This one's more complicated, but it would be nice if there was a built-in trend line generator. I've created custom filemaker functions for calculating linear trend lines, but seems like this should be added to the charting engine. And if it were possible to add more sophisticated trend lines it sure would be nice to have other options as well (ideally a moving average or polynomial trend line).&lt;br&gt;&lt;br&gt;Thanks for listening!</description><pubDate>Thu, 13 Mar 2008 09:57:47 GMT</pubDate><dc:creator>daehl</dc:creator></item><item><title>Limit the number of datapoints to display</title><link>http://www.fusioncharts.com/forum/Topic4869-50-1.aspx</link><description>This goes along with the prior suggestion I made for sorting datapoints (adding a sortData= command). It occurred to me that a sorting option may not be so useful unless there is some way to also control how much sorted data is displayed.&lt;br&gt;&lt;br&gt;For instance, if you have a bunch of data that needs to be sorted, it may also be necessary to display  just a certain number of datapoints  that are either highest or lowest.&lt;br&gt;&lt;br&gt;I think it would be useful to also include commands that allow that. Maybe it could be something like: "maxDataPoints=" that would apply whenever the data &amp; labels were sorted.&lt;br&gt;&lt;br&gt;So if "maxDataPoints=10" was specified, it would display only the ten largest numbers, or "maxDataPoints=-10" would display only the ten lowest numbers. Again, both of which would be determined after any built-in sorting option was used.&lt;br&gt;&lt;br&gt;I can't think of any reason to implement this unless in combination with a sorting command, but I think it would be very useful.&lt;br&gt;</description><pubDate>Mon, 03 Mar 2008 12:26:02 GMT</pubDate><dc:creator>daehl</dc:creator></item><item><title>Automatic resorting of data</title><link>http://www.fusioncharts.com/forum/Topic4531-50-1.aspx</link><description>One feature I would find useful would be to add an option to automatically re-sort the data &amp; labels entered in the URL. A single data series would be chosen as the sort key, and it could be either sorted low-to-high or high-to-low.&lt;br&gt;&lt;br&gt;Maybe a [b]sortData[/b] parameter could be added, with -1 meaning sort high-to-low, and 1 meaning sort low-to-high.&lt;br&gt;&lt;br&gt;For example, given a chart:&lt;br&gt;&lt;br&gt;[quote]&lt;br&gt;?v=free&amp;sep=;&amp;chart=[chartType=Column2D;chartWidth=518;chartHeight=400]&lt;br&gt;&amp;chartParams=[caption=Common Problems YTD;&lt;br&gt;baseFontSize=9;formatNumber=0;yAxisMinValue=0;yAxisMaxValue=10;rotateNames=1;showhovercap=1;animation=0]&lt;br&gt;&amp;labels=Defective componants;Componant shortage;Human error;Automation error;Unscheduled downtime;Other&lt;br&gt;&amp;data=[seriesName=AM;showname=1;showAnchors=1;showValues=1;[b]sortData=-1[/b]]6;1;3;2;4;2&lt;br&gt;[/quote]&lt;br&gt;&lt;br&gt;With the end result being that the graph would display sorted (as if the following was the actual chart URL):&lt;br&gt;&lt;br&gt;[quote]&lt;br&gt;?v=free&amp;sep=;&amp;chart=[chartType=Column2D;chartWidth=518;chartHeight=400]&lt;br&gt;&amp;chartParams=[caption=Common Problems YTD;&lt;br&gt;baseFontSize=9;formatNumber=0;yAxisMinValue=0;yAxisMaxValue=10;rotateNames=1;showhovercap=1;animation=0]&lt;br&gt;&amp;labels=Defective componants;Unscheduled downtime;Human error;Automation error;Other;Componant shortage&lt;br&gt;&amp;data=[seriesName=AM;showname=1;showAnchors=1;showValues=1]6;4;3;2;2;1&lt;br&gt;[/quote]&lt;br&gt;&lt;br&gt;&lt;br&gt;The primary benefit being that the labels and all other data (in the case of a multi-series chart) are automatically sorted along with the key data series.</description><pubDate>Fri, 15 Feb 2008 09:49:33 GMT</pubDate><dc:creator>daehl</dc:creator></item></channel></rss>