iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
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?
i.e. foreach
Thanks,
Al
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.
Here is the snippet:
List<string> type3D = new List<string>();List<string> type2D = new List<string>();foreach (SeriesBarType type in SeriesBarType.GetValues(typeof(SeriesBarType))){ string typeStr = type.ToString(); if (typeStr.Contains("3D")) type3D.Add(typeStr); else type2D.Add(typeStr);}
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname