﻿<?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 v3 / Using FusionCharts / General usage  / trendlines with "steps" / Latest Posts</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>Wed, 07 Jan 2009 18:30:47 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: trendlines with "steps"</title><link>http://www.fusioncharts.com/forum/Topic7573-28-1.aspx</link><description>Not sure if applicable- but wouldn't a step chart work for this purpose? Pls see http://www.fusioncharts.com/PowerCharts.asp#Kagi</description><pubDate>Tue, 29 Jul 2008 08:22:54 GMT</pubDate><dc:creator>Pallav</dc:creator></item><item><title>RE: trendlines with "steps"</title><link>http://www.fusioncharts.com/forum/Topic7573-28-1.aspx</link><description>Hi,&lt;/P&gt;&lt;P&gt;I am afraid, It is not possible as of now.</description><pubDate>Sat, 26 Jul 2008 01:17:34 GMT</pubDate><dc:creator>Rahul Kumar</dc:creator></item><item><title>trendlines with "steps"</title><link>http://www.fusioncharts.com/forum/Topic7573-28-1.aspx</link><description>I am using a scatter chart to show the results for some tests that a student has taken.  I have added horizontal trendlines so that I can color in the graph to visibly display the proficiency range.  Additionally I have added vertical lines between each point, which represents the result of a given test.&lt;P&gt;The result is that I show a point for each test, with a label at the bottom for the test name.  There are vertical lines between each point, added for clarity.  The bottom to the top of the graph is 0% - 100%.  0% to 60% is bound by a trendline, 60% - 80% is bound by a trendline, and 80% -100% is bound by a trendline so that each zone (0% - 100%, 60% - 80%, 80% -100%) is colored differently.  The whole goal is to provide a quick snapshot to the instructor to see how the student is performing.&lt;/P&gt;&lt;P&gt;I understand that I am not truly creating a graph, but I am leveraging the available features to show something else, which brings me to my question.&lt;/P&gt;&lt;P&gt;The final test that I want to show has different zones than I stated above.   It would visually make it look like a "step" is in the final column on the graph.  I want to use 0% - 100%, 60% - &lt;STRONG&gt;85&lt;/STRONG&gt;%, &lt;STRONG&gt;85&lt;/STRONG&gt;% -100%.  Here is an example of what I want to achieve:&lt;/P&gt;&lt;P&gt;&lt;IMG src="http://www.fusioncharts.com/forum/Uploads/Images/a0705d4d-1ea3-471f-a993-a72c.bmp"&gt;&lt;/P&gt;&lt;P&gt;Here is an exapmle of what I have been able to do:&lt;/P&gt;&lt;P&gt;            sChart = "&amp;lt;graph palette='2' canvasBorderThickness='0' chartRightMargin='0' yAxisName='Percent Correct'  xAxisMaxValue='100' xAxisMinValue='0' yAxisMinValue='0' yAxisMaxValue='100' numberSuffix='%25' showLegend='0' bgColor='FFFFFF' showBorder='0' showAlternateHGridColor='0' &amp;gt;";&lt;BR&gt;           &lt;/P&gt;&lt;P&gt;            sChart += "&amp;lt;categories verticalLineColor='666666' verticalLineThickness='1'&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='10' label='Step 1 Word Study'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='20' showVerticalLine='1'  /&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='30' label='Step 3 Vocabulary'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='40' showVerticalLine='1'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='50' label='Step 3 Word Relationship'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='60' showVerticalLine='1'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='70' label='Step 3 Morphology'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='80' showVerticalLine='1'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='90' label='Step 4 Grammar'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='100' showVerticalLine='1'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='110' label='Step 4 Sentence Structure'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='120' showVerticalLine='1'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='130' label='Steps 1, 3 and 4 Total Score'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;category x='140' showVerticalLine='1'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;/categories&amp;gt;";&lt;/P&gt;&lt;P&gt;            sChart += "&amp;lt;dataset seriesName='Server 1' color='0000FF' anchorSides='4' anchorRadius='4' anchorBgColor='C6C6FF' anchorBorderColor='0000FF' showValues='1'  &amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;set y='" + ds.Tables[0].Rows[0]["Step1Score"].ToString() + "' x='10'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;set y='" + ds.Tables[0].Rows[0]["Step3AScore"].ToString() + "' x='30'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;set y='" + ds.Tables[0].Rows[0]["Step3BScore"].ToString() + "' x='50'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;set y='" + ds.Tables[0].Rows[0]["Step3CScore"].ToString() + "' x='70'/&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;set y='" + ds.Tables[0].Rows[0]["Step4AScore"].ToString() + "' x='90'  /&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;set y='" + ds.Tables[0].Rows[0]["Step4BScore"].ToString() + "' x='110'  /&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;set y='" + Average.ToString() + "' x='130'  /&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;/dataset&amp;gt;";&lt;/P&gt;&lt;P&gt;            sChart += "&amp;lt;trendlines  &amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;line startValue='0'   endValue='60.0' isTrendZone='1' valueOnRight='0' color='" + Reteach_Color.ToString() + "' displayValue=' ' /&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;line startValue='60' endValue='80.0' isTrendZone='1' valueOnRight='0' color='" + Reinforce_Color.ToString() + "' displayValue=' ' /&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;line startValue='80.0' endValue='100.0' isTrendZone='1' valueOnRight='0' color='" + Mastery_Color.ToString() + "' displayValue=' ' /&amp;gt;";&lt;BR&gt;            sChart += "&amp;lt;/trendlines&amp;gt;";&lt;/P&gt;&lt;P&gt;            sChart += "&amp;lt;/graph&amp;gt;";&lt;/P&gt;&lt;P&gt;Is there a way to do what I want to do?  If so, how?&lt;/P&gt;&lt;P&gt;Thanks&lt;BR&gt;</description><pubDate>Fri, 25 Jul 2008 16:26:33 GMT</pubDate><dc:creator>Matt</dc:creator></item></channel></rss>