<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx</link><description>We shipped the November 2009 release of the Silverlight Toolkit a little over a week ago and it includes a handful of improvements to the Data Visualization assembly . It also adds support for the new Silverlight 4 Beta ! And while we were busy getting</description><dc:language>en</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx#10241243</link><pubDate>Thu, 24 Nov 2011 10:04:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10241243</guid><dc:creator>Silverlight Programmers Blog</dc:creator><description>&lt;p&gt;The data Visulization of silverlight post very useful for the visulizing the data from the database. i like this post.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10241243" width="1" height="1"&gt;</description></item><item><title>re: Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx#10092206</link><pubDate>Tue, 16 Nov 2010 22:21:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10092206</guid><dc:creator>Srini</dc:creator><description>&lt;p&gt;Yup, that worked. Thanks for pointing in the right direction. This is what I did:&lt;/p&gt;
&lt;p&gt;****&lt;/p&gt;
&lt;p&gt;Style style = new Style(typeof(Control));&lt;/p&gt;
&lt;p&gt;Setter st1 = new Setter(Control.OpacityProperty,0); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;style.Setters.Add(st1);&lt;/p&gt;
&lt;p&gt;((StackedBarSeries)this.chrtXXX.Series[0]).SeriesDefinitions[0].DataPointStyle = style;&lt;/p&gt;
&lt;p&gt;****&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10092206" width="1" height="1"&gt;</description></item><item><title>re: Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx#10092102</link><pubDate>Tue, 16 Nov 2010 18:39:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10092102</guid><dc:creator>David Anson</dc:creator><description>&lt;p&gt;Srini,&lt;/p&gt;
&lt;p&gt;Yes, that&amp;#39;s the way to remove a SeriesDefinition from the collection. I&amp;#39;m not sure I understand your scenario, but here&amp;#39;s an alternate approach: set the DataPointStyle of the SeriesDefinition you want to hide to a custom Style that defines an empty Template. This should immediately be applied to each of the relevant DataPoints and they should disappear. When you want them to come back, just do a ClearValue on that same DataPointStyle property and the DataPoints should come back. :)&lt;/p&gt;
&lt;p&gt;Hope this helps!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10092102" width="1" height="1"&gt;</description></item><item><title>re: Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx#10092014</link><pubDate>Tue, 16 Nov 2010 15:57:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10092014</guid><dc:creator>Srini</dc:creator><description>&lt;p&gt;Delay,&lt;/p&gt;
&lt;p&gt;I tried removing the series definition, but here&amp;#39;s the problem. There are two series definitions, sd1, sd2, one stacked on top of the other. Lets say one value of sd1 starts at 0 and ends at 100 and the sd2 at the same point starts at 100 and ends at 150. If I remove sd1, then sd2 now falls down and starts at 0. I want sd2 to stay at 100.&lt;/p&gt;
&lt;p&gt;Also, I used the following way to remove the sd - ((StackedBarSeries)this.chrtXXX.Series[0]).SeriesDefinitions.Remove(sd1); &lt;/p&gt;
&lt;p&gt;Is this the right way?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10092014" width="1" height="1"&gt;</description></item><item><title>re: Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx#10090915</link><pubDate>Mon, 15 Nov 2010 04:54:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10090915</guid><dc:creator>Srini</dc:creator><description>&lt;p&gt;Delay,&lt;/p&gt;
&lt;p&gt;Thanks for the prompt reply. Let me try that and I&amp;#39;ll let you know how it worked for me.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10090915" width="1" height="1"&gt;</description></item><item><title>re: Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx#10090434</link><pubDate>Sat, 13 Nov 2010 00:13:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10090434</guid><dc:creator>David Anson</dc:creator><description>&lt;p&gt;Srini,&lt;/p&gt;
&lt;p&gt;Removing the SeriesDefinition from the StackedSeries&amp;#39;s SeriesDefinitions collection (and adding it back when you want it to display again) is probably what you want to do here.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10090434" width="1" height="1"&gt;</description></item><item><title>re: Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx#10090431</link><pubDate>Sat, 13 Nov 2010 00:01:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10090431</guid><dc:creator>Srini</dc:creator><description>&lt;p&gt;I&amp;#39;m using the stacked bar series and I have two series definitions in that. I want to set the opacity of the first series to 0. But I&amp;#39;m unable to do it. Basically I want to hide one of the two series that make up my stacked bar series. How to do that?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10090431" width="1" height="1"&gt;</description></item><item><title>re: Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx#10087813</link><pubDate>Mon, 08 Nov 2010 20:53:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10087813</guid><dc:creator>David Anson</dc:creator><description>&lt;p&gt;Andy,&lt;/p&gt;
&lt;p&gt;Sorry, I don&amp;#39;t think I understand the question. A pre-compiled version of the Silverlight/WPF Toolkit&amp;#39;s DataVisualization assembly specifically targetting WPF 4 can be found inside the ZIP linked to by the post above: &lt;a rel="nofollow" target="_new" href="http://cesso.org/Samples/SilverlightWpfDataVisualization/SilverlightWpfDataVisualization.zip"&gt;cesso.org/.../SilverlightWpfDataVisualization.zip&lt;/a&gt;. I hope that&amp;#39;s what you&amp;#39;re looking for!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10087813" width="1" height="1"&gt;</description></item><item><title>re: Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx#10087799</link><pubDate>Mon, 08 Nov 2010 20:19:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10087799</guid><dc:creator>Andy</dc:creator><description>&lt;p&gt;Trying to use the built in 4.0 WPF charting via System.Windows.Controls.DataVisualization.Charting but cant find them except in the WPF Toolkit which is only 3.5. &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10087799" width="1" height="1"&gt;</description></item><item><title>re: Two birds, squared! [Silverlight/WPF Data Visualization Development Release 3 and a DataVisualizationDemos update]</title><link>http://blogs.msdn.com/b/delay/archive/2009/11/30/two-birds-squared-silverlight-wpf-data-visualization-development-release-3-and-a-datavisualizationdemos-update.aspx#10075444</link><pubDate>Wed, 13 Oct 2010 18:00:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10075444</guid><dc:creator>David Anson</dc:creator><description>&lt;p&gt;Joe,&lt;/p&gt;
&lt;p&gt;It sounds like you copied that XAML from my ChartBuilder sample (more information: &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/b/delay/archive/2008/10/29/click-your-way-to-great-silverlight-charts-live-chartbuilder-sample-and-source-code.aspx"&gt;blogs.msdn.com/.../click-your-way-to-great-silverlight-charts-live-chartbuilder-sample-and-source-code.aspx&lt;/a&gt;). In that case, the ObservableObjectCollection reference is to a class that&amp;#39;s part of the ChartBuilder assembly and that&amp;#39;s why it&amp;#39;s not resolving successfully in your application. All it really is is a trivial subclass of ObservableCollection&amp;lt;object&amp;gt;, so it&amp;#39;ll probably be easiest for you to just create a subclass of that in your project and reference that instead.&lt;/p&gt;
&lt;p&gt;Hope this helps!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10075444" width="1" height="1"&gt;</description></item></channel></rss>