﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - Retrieve both 2d and 3d Chart types</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Retrieve-both-2d-and-3d-Chart-types/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Retrieve both 2d and 3d Chart types</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Retrieve-both-2d-and-3d-Chart-types/</link><pubDate>Mon, 22 Feb 2010 22:14:28 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;In order to retrieve the bar type, you will need to iterate the SeriesBarType enum object. All the 3D type should have a 3D string in the enum.&lt;/p&gt;&lt;p&gt;Here is the snippet:&lt;/p&gt;&lt;pre&gt;List&amp;lt;string&amp;gt; type3D = new List&amp;lt;string&amp;gt;();&lt;br /&gt;List&amp;lt;string&amp;gt; type2D = new List&amp;lt;string&amp;gt;();&lt;br /&gt;&lt;br /&gt;foreach (SeriesBarType type in SeriesBarType.GetValues(typeof(SeriesBarType)))&lt;br /&gt;{&lt;br /&gt;    string typeStr = type.ToString();&lt;br /&gt;    if (typeStr.Contains("3D"))&lt;br /&gt;        type3D.Add(typeStr);&lt;br /&gt;    else&lt;br /&gt;        type2D.Add(typeStr);&lt;br /&gt;}&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Retrieve both 2d and 3d Chart types</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Retrieve-both-2d-and-3d-Chart-types/</link><pubDate>Mon, 22 Feb 2010 20:14:36 GMT</pubDate><dc:creator>alagarde</dc:creator><description>&lt;p&gt;Is it possible to create an array of available 2d and 3d chart type similer to the method used to retreive the list of bar shapes?&lt;/p&gt;
&lt;p&gt;i.e. &lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;foreach&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
foreach&lt;span style="font-size: 13px"&gt; (&lt;/span&gt;&lt;span style="color: #2b91af; font-size: 13px"&gt;&lt;span style="color: #2b91af; font-size: 13px"&gt;BarShape&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; shape &lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;in&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #2b91af; font-size: 13px"&gt;&lt;span style="color: #2b91af; font-size: 13px"&gt;BarShape&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;.GetValues(&lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;typeof&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;(&lt;/span&gt;&lt;span style="color: #2b91af; font-size: 13px"&gt;&lt;span style="color: #2b91af; font-size: 13px"&gt;BarShape&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;)))&lt;/span&gt; 

&lt;p&gt;&lt;span style="font-size: 13px"&gt;Thanks,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 13px"&gt;Al&lt;/span&gt;&lt;/p&gt;</description></item></channel></rss>