<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>dynamicdatadisplay Work Item Rss Feed</title><link>http://www.codeplex.com/dynamicdatadisplay/WorkItem/List.aspx</link><description>dynamicdatadisplay Work Item Rss Description</description><item><title>Created Issue: Need to move horizontal axis with graph [19625]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/19625</link><description>Hi All,&lt;br /&gt;I am displaying a graph with ths xaml code.&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;&amp;#60;Grid&amp;#62;&lt;br /&gt;        &amp;#60;d3&amp;#58;ChartPlotter x&amp;#58;Name&amp;#61;&amp;#34;chartPlotter&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;d3&amp;#58;ChartPlotter.HorizontalAxis&amp;#62;&lt;br /&gt;                &amp;#60;d3&amp;#58;HorizontalDateTimeAxis Name&amp;#61;&amp;#34;dateAxis&amp;#34;&amp;#62;&amp;#60;&amp;#47;d3&amp;#58;HorizontalDateTimeAxis&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;d3&amp;#58;ChartPlotter.HorizontalAxis&amp;#62;&lt;br /&gt;            &amp;#60;d3&amp;#58;ChartPlotter.VerticalAxis&amp;#62;&lt;br /&gt;                &amp;#60;d3&amp;#58;VerticalIntegerAxis Name&amp;#61;&amp;#34;countAxis&amp;#34;&amp;#62;&amp;#60;&amp;#47;d3&amp;#58;VerticalIntegerAxis&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;d3&amp;#58;ChartPlotter.VerticalAxis&amp;#62;&lt;br /&gt;            &amp;#60;d3&amp;#58;Header Content&amp;#61;&amp;#34;Weather Information&amp;#34; FontFamily&amp;#61;&amp;#34;Verdana&amp;#34;&amp;#62;&amp;#60;&amp;#47;d3&amp;#58;Header&amp;#62;&lt;br /&gt;            &amp;#60;d3&amp;#58;VerticalAxisTitle Content&amp;#61;&amp;#34;Count&amp;#34; FontFamily&amp;#61;&amp;#34;Verdana&amp;#34;&amp;#62;&amp;#60;&amp;#47;d3&amp;#58;VerticalAxisTitle&amp;#62;&lt;br /&gt;            &amp;#60;d3&amp;#58;HorizontalAxisTitle Content&amp;#61;&amp;#34;Date&amp;#34; FontFamily&amp;#61;&amp;#34;Verdana&amp;#34;&amp;#62;&amp;#60;&amp;#47;d3&amp;#58;HorizontalAxisTitle&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;d3&amp;#58;ChartPlotter&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;&amp;#47;&amp;#47;Object &amp;#38; variables&lt;br /&gt;&lt;br /&gt;List&amp;#60;WeatherData&amp;#62; weatherInfoList&amp;#59; &lt;br /&gt;DateTime&amp;#91;&amp;#93; dates&amp;#59;&lt;br /&gt;        int&amp;#91;&amp;#93; minTemp&amp;#59;&lt;br /&gt;        int&amp;#91;&amp;#93; maxTemp&amp;#59;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;On window load start a timer&amp;#58;&lt;br /&gt;---------------------------------------------&lt;br /&gt;private void Window1_Loaded&amp;#40;object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;            StartTimer&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt; &amp;#125;&lt;br /&gt;--------------------------------------------&lt;br /&gt;private void StartTimer&amp;#40;&amp;#41;&lt;br /&gt; &amp;#123;&lt;br /&gt;&lt;br /&gt;            DisplayDynamicDataFromText&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            objTimer.Interval &amp;#61; new TimeSpan&amp;#40;0, 0, 1&amp;#41;&amp;#59;&lt;br /&gt;            objTimer.Tick &amp;#43;&amp;#61; new EventHandler&amp;#40;objTimer_Tick&amp;#41;&amp;#59;&lt;br /&gt;            objTimer.Start&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;  &amp;#125;&lt;br /&gt;--------------------------------------------------------------&lt;br /&gt;        private void DisplayDynamicDataFromText&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;           RemoveOldLine&amp;#40;&amp;#41;&amp;#59;&amp;#47;&amp;#47; Removing all old line from chart&lt;br /&gt;&lt;br /&gt;            weatherInfoList &amp;#61; LoadWeatherInfo&amp;#40;&amp;#34;..&amp;#92;&amp;#92;..&amp;#92;&amp;#92;WeatherRecord.txt&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;          &amp;#47;&amp;#47; loading weather info from txt file to the list of class Wether Info having    properties &amp;#34;DateTime&amp;#34;,&amp;#34;minTemp&amp;#34;,&amp;#34;MaxTemp&amp;#34;&lt;br /&gt;            &lt;br /&gt;            dates &amp;#61; new DateTime&amp;#91;weatherInfoList.Count&amp;#93;&amp;#59;&lt;br /&gt;            minTemp &amp;#61; new int&amp;#91;weatherInfoList.Count&amp;#93;&amp;#59;&lt;br /&gt;            maxTemp &amp;#61; new int&amp;#91;weatherInfoList.Count&amp;#93;&amp;#59;&lt;br /&gt;&lt;br /&gt;            &lt;br /&gt;            for &amp;#40;int i &amp;#61; 0&amp;#59; i &amp;#60; weatherInfoList.Count&amp;#59; &amp;#43;&amp;#43;i&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    dates&amp;#91;i&amp;#93; &amp;#61; weatherInfoList&amp;#91;i&amp;#93;.date&amp;#59;&lt;br /&gt;                    minTemp&amp;#91;i&amp;#93; &amp;#61; weatherInfoList&amp;#91;i&amp;#93;.minTemp&amp;#59;&lt;br /&gt;                    maxTemp&amp;#91;i&amp;#93; &amp;#61; weatherInfoList&amp;#91;i&amp;#93;.maxTemp&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;            &lt;br /&gt;            &lt;br /&gt;            &amp;#47;&amp;#47;Get date collection from text file&lt;br /&gt;            var datesDataSource &amp;#61; new ObservableDataSource&amp;#60;DateTime&amp;#62;&amp;#40;dates&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#47;&amp;#47;Set date to X-Axis&lt;br /&gt;            datesDataSource.SetXMapping&amp;#40;x &amp;#61;&amp;#62; dateAxis.ConvertToDouble&amp;#40;x&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            &amp;#47;&amp;#47;Get number of min  and set it to Y-Axis&lt;br /&gt;            var numberOpenDataSource &amp;#61; new ObservableDataSource&amp;#60;int&amp;#62;&amp;#40;minTemp&amp;#41;&amp;#59;&lt;br /&gt;            numberOpenDataSource.SetYMapping&amp;#40;y &amp;#61;&amp;#62; y&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            &lt;br /&gt;            compositeDataSource1 &amp;#61; new CompositeDataSource&amp;#40;datesDataSource, numberOpenDataSource&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#47;&amp;#47;CompositeDataSource compositeDataSource2 &amp;#61; new CompositeDataSource&amp;#40;datesDataSource, numberClosedDataSource&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            chartPlotter.AddLineGraph&amp;#40;compositeDataSource1,&lt;br /&gt;                   new Pen&amp;#40;Brushes.Blue, 2&amp;#41;,&lt;br /&gt;                   new CirclePointMarker &amp;#123; Size &amp;#61; 10.0, Fill &amp;#61; Brushes.Red &amp;#125;,&lt;br /&gt;                   new PenDescription&amp;#40;&amp;#34;Minimum Temperature&amp;#34;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            chartPlotter.Viewport.FlowDirection &amp;#61; FlowDirection.RightToLeft&amp;#59;&lt;br /&gt;            &amp;#47;&amp;#47;chartPlotter.Viewport.FitToView&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                      &lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;&amp;#47;&amp;#47;Upto this point data is showing properly and expected. but on timer event i am inserting new record to txt file for each tick after displaying the current data.&lt;br /&gt;&lt;br /&gt;&amp;#47;&amp;#47;My requirement is to move the horizontal axis with corrresponding graph on every tick as we insert new record in txt file.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;private void objTimer_Tick&amp;#40;object sender, EventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            Int32 intMin &amp;#61; _r.Next&amp;#40;2, 10&amp;#41;&amp;#59;&lt;br /&gt;            Int32 intMax &amp;#61; _r.Next&amp;#40;30, 50&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            DisplayDynamicDataFromText&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;           File.AppendAllText&amp;#40;&amp;#34;..&amp;#92;&amp;#92;..&amp;#92;&amp;#92;WeatherRecord.txt&amp;#34;, Environment.NewLine &amp;#43; DateTime.Now.AddYears&amp;#40;tempCount&amp;#41;.Date.ToShortDateString&amp;#40;&amp;#41; &amp;#43; &amp;#34;&amp;#58;&amp;#34; &amp;#43; intMin &amp;#43; &amp;#34;&amp;#58;&amp;#34; &amp;#43; intMax&amp;#41;&amp;#59;&lt;br /&gt;           tempCount&amp;#43;&amp;#43;&amp;#59;&lt;br /&gt;         &lt;br /&gt;        &amp;#125; &lt;br /&gt;&lt;br /&gt;&amp;#47;&amp;#47;Suppose for first time txt file have entries&lt;br /&gt;DateTime   Min   Max&lt;br /&gt;1&amp;#47;1&amp;#47;2010     3       34&lt;br /&gt;1&amp;#47;1&amp;#47;2011     5       44&lt;br /&gt;1&amp;#47;1&amp;#47;2012     6       24&lt;br /&gt;1&amp;#47;1&amp;#47;2013     2       41&lt;br /&gt;1&amp;#47;1&amp;#47;2014     8       40&lt;br /&gt;&lt;br /&gt;So for first time x axis should be plotted like&lt;br /&gt;&lt;br /&gt;X--------------------------------------------------------------------------------------&lt;br /&gt;&amp;#42;1&amp;#47;1&amp;#47;2010       &amp;#42;1&amp;#47;1&amp;#47;2011     &amp;#42;1&amp;#47;1&amp;#47;2012     &amp;#42;1&amp;#47;1&amp;#47;2013     &amp;#42;1&amp;#47;1&amp;#47;2014     &lt;br /&gt;&lt;br /&gt;For secode tick we have already added a new entry&lt;br /&gt;DateTime   Min   Max&lt;br /&gt;1&amp;#47;1&amp;#47;2010     3       34&lt;br /&gt;1&amp;#47;1&amp;#47;2011     5       44&lt;br /&gt;1&amp;#47;1&amp;#47;2012     6       24&lt;br /&gt;1&amp;#47;1&amp;#47;2013     2       41&lt;br /&gt;1&amp;#47;1&amp;#47;2014     8       40&lt;br /&gt;1&amp;#47;1&amp;#47;2015     5       35  new&lt;br /&gt;&lt;br /&gt;so this time graph should be &lt;br /&gt;&lt;br /&gt;X--------------------------------------------------------------------------------------&lt;br /&gt;&amp;#42;1&amp;#47;1&amp;#47;2011       &amp;#42;1&amp;#47;1&amp;#47;2012     &amp;#42;1&amp;#47;1&amp;#47;2013     &amp;#42;1&amp;#47;1&amp;#47;2014     &amp;#42;1&amp;#47;1&amp;#47;2015&lt;br /&gt;&lt;br /&gt;--------like way&lt;br /&gt;X--------------------------------------------------------------------------------------&lt;br /&gt;&amp;#42;1&amp;#47;1&amp;#47;2012       &amp;#42;1&amp;#47;1&amp;#47;2013     &amp;#42;1&amp;#47;1&amp;#47;2014     &amp;#42;1&amp;#47;1&amp;#47;2015     &amp;#42;1&amp;#47;1&amp;#47;2016&lt;br /&gt;&lt;br /&gt;-----&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;X--------------------------------------------------------------------------------------&lt;br /&gt;&amp;#42;1&amp;#47;1&amp;#47;2017       &amp;#42;1&amp;#47;1&amp;#47;2018     &amp;#42;1&amp;#47;1&amp;#47;2019     &amp;#42;1&amp;#47;1&amp;#47;2020     &amp;#42;1&amp;#47;1&amp;#47;2021&lt;br /&gt;&lt;br /&gt;So overall effect sould be movable from user prospective.&lt;br /&gt;&lt;br /&gt;-------------------------------------------------------------------------------------------&lt;br /&gt;Let me know if you have any idea guys&amp;#33;&amp;#33;&amp;#33;&amp;#33;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Shambhu&lt;br /&gt;</description><author>shambhu1234</author><pubDate>Mon, 22 Apr 2013 04:13:20 GMT</pubDate><guid isPermaLink="false">Created Issue: Need to move horizontal axis with graph [19625] 20130422041320A</guid></item><item><title>Created Issue: LineCursor Vertical Line [19238]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/19238</link><description>Hello &amp;#33;&lt;br /&gt;&lt;br /&gt;I would to creat an Vertical Line and a DraggablePoint to show an Y Value for an X Value of an chart...&lt;br /&gt;&lt;br /&gt;I search everywhere but i don&amp;#39;t find a methode who return Y Value for an X Value...&lt;br /&gt;&lt;br /&gt;Can you help me &amp;#63; &lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;</description><author>Elite182</author><pubDate>Thu, 24 Jan 2013 10:43:53 GMT</pubDate><guid isPermaLink="false">Created Issue: LineCursor Vertical Line [19238] 20130124104353A</guid></item><item><title>Created Issue: LineCursor Vertical [19237]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/19237</link><description>Hello &amp;#33; &lt;br /&gt;&lt;br /&gt;I would like to create a vertilcal line with DraggablePoint to show the the value of Y Axis for an chart. &lt;br /&gt;&lt;br /&gt;I search everywhere to try to find method who return Y value for an X Value...&lt;br /&gt;&lt;br /&gt;If you have an solution... help me &amp;#58;&amp;#41;&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Elite182&lt;br /&gt;</description><author>Elite182</author><pubDate>Thu, 24 Jan 2013 10:35:41 GMT</pubDate><guid isPermaLink="false">Created Issue: LineCursor Vertical [19237] 20130124103541A</guid></item><item><title>Commented Issue: "Operation could destabilize the runtime" exception after installing Visual Studio 2012 [18738]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/18738</link><description>We have been using DynamicDataDisplay in a Visual Studio 2010 project.  After installing Visual Studio 2012 our application is throwing the following runtime exception when trying to instantiate an object that has ChartPlotter as the base class.&lt;br /&gt;&lt;br /&gt;&amp;#38;quot&amp;#59;Operation could destabilize the runtime.&amp;#38;quot&amp;#59;&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.AxisControl&amp;#96;1..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.NumericAxisControl..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.NumericAxis..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.HorizontalAxis..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.ChartPlotter..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at ApplicationDataChart..ctor&amp;#40;&amp;#41; i&lt;br /&gt;Comments: ** Comment from web user: thamilton ** &lt;p&gt;Thanks.  I do not have AllowPartiallyTrustedCallers in my DDD project.&lt;/p&gt;&lt;p&gt;However, I was able to work around this problem by adding this line to AssemblyInfo.cs in the DDD project:&lt;/p&gt;&lt;p&gt;[assembly: SecurityRules(SecurityRuleSet.Level1, SkipVerificationInFullTrust = true)] &lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>thamilton</author><pubDate>Wed, 24 Oct 2012 15:30:13 GMT</pubDate><guid isPermaLink="false">Commented Issue: "Operation could destabilize the runtime" exception after installing Visual Studio 2012 [18738] 20121024033013P</guid></item><item><title>Commented Issue: "Operation could destabilize the runtime" exception after installing Visual Studio 2012 [18738]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/18738</link><description>We have been using DynamicDataDisplay in a Visual Studio 2010 project.  After installing Visual Studio 2012 our application is throwing the following runtime exception when trying to instantiate an object that has ChartPlotter as the base class.&lt;br /&gt;&lt;br /&gt;&amp;#38;quot&amp;#59;Operation could destabilize the runtime.&amp;#38;quot&amp;#59;&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.AxisControl&amp;#96;1..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.NumericAxisControl..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.NumericAxis..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.HorizontalAxis..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.ChartPlotter..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at ApplicationDataChart..ctor&amp;#40;&amp;#41; i&lt;br /&gt;Comments: ** Comment from web user: LelliD ** &lt;p&gt;This exception is due to an issue in the .NET Framework 4.5, which was installed with your Visual Studio 2012. See http://elegantcode.com/2012/08/23/net-4-5-operation-could-destabilize-the-runtime-yikes/&lt;br&gt;In contrast to the example there, for me it helped to uncomment&lt;br&gt;[assembly: AllowPartiallyTrustedCallers]&lt;br&gt;in AssemblyInfo.cs of the DDD library, which obviously switched off the CLR verification.&lt;/p&gt;</description><author>LelliD</author><pubDate>Wed, 24 Oct 2012 14:32:43 GMT</pubDate><guid isPermaLink="false">Commented Issue: "Operation could destabilize the runtime" exception after installing Visual Studio 2012 [18738] 20121024023243P</guid></item><item><title>Commented Issue: "Operation could destabilize the runtime" exception after installing Visual Studio 2012 [18738]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/18738</link><description>We have been using DynamicDataDisplay in a Visual Studio 2010 project.  After installing Visual Studio 2012 our application is throwing the following runtime exception when trying to instantiate an object that has ChartPlotter as the base class.&lt;br /&gt;&lt;br /&gt;&amp;#38;quot&amp;#59;Operation could destabilize the runtime.&amp;#38;quot&amp;#59;&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.AxisControl&amp;#96;1..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.NumericAxisControl..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.NumericAxis..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.HorizontalAxis..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.ChartPlotter..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at ApplicationDataChart..ctor&amp;#40;&amp;#41; i&lt;br /&gt;Comments: ** Comment from web user: thamilton ** &lt;p&gt;I created a simple WPF test app that has a ChartPlotter on its main form.  It also produces the error when built with Platform Target &amp;quot;x86&amp;quot;.  When built with Platform Target &amp;quot;Any CPU&amp;quot;, it runs without error.&lt;/p&gt;&lt;p&gt;My development machine is running 64 bit Windows 7.  We target x86 because we have other 32 bit components in our application, and need to target 32 bit OS.&lt;/p&gt;</description><author>thamilton</author><pubDate>Tue, 09 Oct 2012 14:21:16 GMT</pubDate><guid isPermaLink="false">Commented Issue: "Operation could destabilize the runtime" exception after installing Visual Studio 2012 [18738] 20121009022116P</guid></item><item><title>Commented Issue: "Operation could destabilize the runtime" exception after installing Visual Studio 2012 [18738]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/18738</link><description>We have been using DynamicDataDisplay in a Visual Studio 2010 project.  After installing Visual Studio 2012 our application is throwing the following runtime exception when trying to instantiate an object that has ChartPlotter as the base class.&lt;br /&gt;&lt;br /&gt;&amp;#38;quot&amp;#59;Operation could destabilize the runtime.&amp;#38;quot&amp;#59;&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.AxisControl&amp;#96;1..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.NumericAxisControl..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.NumericAxis..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.HorizontalAxis..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.ChartPlotter..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at ApplicationDataChart..ctor&amp;#40;&amp;#41; i&lt;br /&gt;Comments: ** Comment from web user: thamilton ** &lt;p&gt;I should clarify that this occurs when we build the application with Visual Studio 2010.&lt;/p&gt;</description><author>thamilton</author><pubDate>Tue, 02 Oct 2012 14:14:50 GMT</pubDate><guid isPermaLink="false">Commented Issue: "Operation could destabilize the runtime" exception after installing Visual Studio 2012 [18738] 20121002021450P</guid></item><item><title>Created Issue: "Operation could destabilize the runtime" exception after installing Visual Studio 2012 [18738]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/18738</link><description>We have been using DynamicDataDisplay in a Visual Studio 2010 project.  After installing Visual Studio 2012 our application is throwing the following runtime exception when trying to instantiate an object that has ChartPlotter as the base class.&lt;br /&gt;&lt;br /&gt;&amp;#38;quot&amp;#59;Operation could destabilize the runtime.&amp;#38;quot&amp;#59;&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.AxisControl&amp;#96;1..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.NumericAxisControl..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.NumericAxis..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.Charts.HorizontalAxis..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Research.DynamicDataDisplay.ChartPlotter..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at ApplicationDataChart..ctor&amp;#40;&amp;#41; i&lt;br /&gt;</description><author>thamilton</author><pubDate>Tue, 02 Oct 2012 14:09:32 GMT</pubDate><guid isPermaLink="false">Created Issue: "Operation could destabilize the runtime" exception after installing Visual Studio 2012 [18738] 20121002020932P</guid></item><item><title>Commented Issue: Dynamic Data Display for Silverlight 2.0 license [16933]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/16933</link><description>The DDD for Silverlight v 2.0 is distributed under MSR-LA license which doesn&amp;#39;t allow commercial use. Please vote here if this is an issue for you. High number will raise priority for reconsidering this decision.&lt;br /&gt;Comments: ** Comment from web user: eugenpodaru ** &lt;p&gt;We really like the library and would want to use it our project. The project is an internal tool that will be used by our consultants to sell services to our clients. The problem is that this licence does not allow us to use it. Instead we are using DDD v0.3 which comes with a licence that allows us to use it, but misses some features.&lt;/p&gt;</description><author>eugenpodaru</author><pubDate>Mon, 02 Jul 2012 12:01:01 GMT</pubDate><guid isPermaLink="false">Commented Issue: Dynamic Data Display for Silverlight 2.0 license [16933] 20120702120101P</guid></item><item><title>Commented Issue: MarkerGraph doesn't render big X values [18208]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/18208</link><description>I ran into a problem, where my BarGraph doesn&amp;#39;t want to render when the X values are in the DateTime.Now range.&lt;br /&gt;&lt;br /&gt;The following code illustrates the point&amp;#58;&lt;br /&gt;&lt;br /&gt;this.barChart.PlotBars&amp;#40;5, 5&amp;#41;&amp;#59; &amp;#47;&amp;#47; Will render a big blue bar&lt;br /&gt;this.barChart.PlotBars&amp;#40;&amp;#40;double&amp;#41;DateTime.Now.Ticks, 5&amp;#41;&amp;#59; &amp;#47;&amp;#47;Won&amp;#39;t render anything&lt;br /&gt;&lt;br /&gt;Non marker graphs, such as LineGraph doesn&amp;#39;t have an issue with this.&lt;br /&gt;Comments: ** Comment from web user: aaabor ** &lt;p&gt;Updated with sample to illustrate the point.&lt;/p&gt;</description><author>aaabor</author><pubDate>Sat, 09 Jun 2012 01:48:27 GMT</pubDate><guid isPermaLink="false">Commented Issue: MarkerGraph doesn't render big X values [18208] 20120609014827A</guid></item><item><title>Created Issue: MarkerGraph doesn't render big X values [18208]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/18208</link><description>I ran into a problem, where my BarGraph doesn&amp;#39;t want to render when the X values are in the DateTime.Now range.&lt;br /&gt;&lt;br /&gt;The following code illustrates the point&amp;#58;&lt;br /&gt;&lt;br /&gt;this.barChart.PlotBars&amp;#40;5, 5&amp;#41;&amp;#59;&amp;#59; &amp;#47;&amp;#47; Will render a big blue bar&lt;br /&gt;barGraph.Plot&amp;#40;&amp;#40;double&amp;#41;DateTime.Now.Ticks, 5&amp;#41;&amp;#59; &amp;#47;&amp;#47;Won&amp;#39;t render anything&lt;br /&gt;&lt;br /&gt;Non marker graphs, such as LineGraph doesn&amp;#39;t have an issue with this.&lt;br /&gt;</description><author>aaabor</author><pubDate>Sat, 09 Jun 2012 01:45:58 GMT</pubDate><guid isPermaLink="false">Created Issue: MarkerGraph doesn't render big X values [18208] 20120609014558A</guid></item><item><title>Commented Issue: Legend has only one column and hide items that falls below the graph [16444]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/16444</link><description>Legend has only one column and hide items that falls below the graph.&lt;br /&gt;&lt;br /&gt;Legend should resize itself to ensure to show all items. The number of columns should be dynamics to ensure to fit&amp;#47;show all items.&lt;br /&gt;Comments: ** Comment from web user: sun_dhmn ** &lt;p&gt;I also face the same problem.I have one plotter which is drawing graph nicely.But i have two issues with it.&lt;br /&gt;1.&amp;#41;when items count is greater than graph height then it hide the items.Is there any way to add scroll to legend box&amp;#63;&lt;br /&gt;2.&amp;#41;I want to show x-axies with datetime and subgrouped by time. But currently it shows the only date subgrouped by hours.&lt;br /&gt; &lt;/p&gt;</description><author>sun_dhmn</author><pubDate>Sat, 05 May 2012 09:35:24 GMT</pubDate><guid isPermaLink="false">Commented Issue: Legend has only one column and hide items that falls below the graph [16444] 20120505093524A</guid></item><item><title>Created Issue: Support for Metro apps through Portable Class Library [17731]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/17731</link><description>It would be great to see this library ported to a Portable Class Library so that it can be used in many more project types, including Windows 8 Metro applications.&lt;br /&gt;&lt;br /&gt;Is there already any progress in this because there is no free rendering library available yet for Metro applications.&lt;br /&gt;</description><author>Thof1</author><pubDate>Fri, 30 Mar 2012 08:34:39 GMT</pubDate><guid isPermaLink="false">Created Issue: Support for Metro apps through Portable Class Library [17731] 20120330083439A</guid></item><item><title>Created Issue: Provide NuGet packages [17664]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/17664</link><description>Please distribute the binaries for this as NuGet packages, sooo much easier to use in that case and really the way libraries should be distributed these days for .Net.&lt;br /&gt;</description><author>davidacoder</author><pubDate>Mon, 19 Mar 2012 21:59:59 GMT</pubDate><guid isPermaLink="false">Created Issue: Provide NuGet packages [17664] 20120319095959P</guid></item><item><title>Created Issue: Bring back WPF support for version 2.0 [17663]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/17663</link><description>Title says it all. I am much more interested in a WPF version. I use D3 within my scientific code to display data, which of course runs on the full .Net Framework, not Silverlight.&lt;br /&gt;</description><author>davidacoder</author><pubDate>Mon, 19 Mar 2012 21:59:03 GMT</pubDate><guid isPermaLink="false">Created Issue: Bring back WPF support for version 2.0 [17663] 20120319095903P</guid></item><item><title>Created Issue: Stretch property of Image for IsolineGraph [17333]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/17333</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m using D3 to visualize the efficiency of electromotors. The isoline graph looked like the best solution, as it supports everything I&amp;#39;m planning to do. It currently looks like the attached image.&lt;br /&gt;&lt;br /&gt;There are no values for the upper-right corner, yet it is still filled. I&amp;#39;m assuming this is the work of the Stretch property.&lt;br /&gt;&lt;br /&gt;I&amp;#39;d like to alter this line of code&amp;#58;&lt;br /&gt;&amp;#60;Image Name&amp;#61;&amp;#34;image&amp;#34; d3&amp;#58;ViewportPanel.ViewportBounds&amp;#61;&amp;#34;0,0,2,1.5&amp;#34; Stretch&amp;#61;&amp;#34;Fill&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;&lt;br /&gt;What other options are there for this&amp;#63;&lt;br /&gt;&lt;br /&gt;Thank you in advance,&lt;br /&gt;&lt;br /&gt;CX&lt;br /&gt;</description><author>CXgamer</author><pubDate>Thu, 02 Feb 2012 08:46:35 GMT</pubDate><guid isPermaLink="false">Created Issue: Stretch property of Image for IsolineGraph [17333] 20120202084635A</guid></item><item><title>Created Issue: Setting a DraggablePoint initially at 0,0 means the Draggable point is not visible [17268]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/17268</link><description>Creating a DraggablePoint at 0,0 by any method, xaml or on c&amp;#35; means that the Draggable point is not visible. &lt;br /&gt;e.g.   &amp;#60;d3&amp;#58;DraggablePoint Position&amp;#61;&amp;#34;0,0&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;</description><author>mchilton</author><pubDate>Mon, 16 Jan 2012 09:36:18 GMT</pubDate><guid isPermaLink="false">Created Issue: Setting a DraggablePoint initially at 0,0 means the Draggable point is not visible [17268] 20120116093618A</guid></item><item><title>Created Issue: Help Wanted! Heatmap under VB2010??? [17007]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/17007</link><description>I am looking for a code-snippet with which I can realize a heatmap-chart under VB2010 to embed it in a geo-application.&lt;br /&gt;Can anybody help me&amp;#63;&lt;br /&gt;</description><author>metageo</author><pubDate>Wed, 07 Dec 2011 08:15:44 GMT</pubDate><guid isPermaLink="false">Created Issue: Help Wanted! Heatmap under VB2010??? [17007] 20111207081544A</guid></item><item><title>Created Issue: Dynamic Data Display for Silverlight 2.0 license [16933]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/16933</link><description>The DDD for Silverlight v 2.0 is distributed under MSR-LA license which doesn&amp;#39;t allow commercial use. Please vote here if this is an issue for you. High number will raise priority for reconsidering this decision.&lt;br /&gt;</description><author>vassilyl</author><pubDate>Wed, 23 Nov 2011 18:45:51 GMT</pubDate><guid isPermaLink="false">Created Issue: Dynamic Data Display for Silverlight 2.0 license [16933] 20111123064551P</guid></item><item><title>Commented Issue: can D3 draw 1000000 points in a second? [15624]</title><link>http://dynamicdatadisplay.codeplex.com/workitem/15624</link><description>Please let me know can D3 draw 1000000 points in a second&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: EricOuellet ** &lt;p&gt;No. By far no, mainly with default settings.&lt;br /&gt;Set RenderOptions.EdgeMode for window containing D3 to remove antialiasing &amp;#40;a lot faster&amp;#41;.&lt;br /&gt;Althought anti-aliasing removed, I have really better performance with National Instrument &amp;#34;Measurement Studio&amp;#34; graphics &amp;#40;WinForms&amp;#41;.&lt;/p&gt;&lt;p&gt;Eric&lt;/p&gt;</description><author>EricOuellet</author><pubDate>Fri, 09 Sep 2011 12:45:46 GMT</pubDate><guid isPermaLink="false">Commented Issue: can D3 draw 1000000 points in a second? [15624] 20110909124546P</guid></item></channel></rss>