The quick start guides you through the steps of adding the TreeMap control to your MVC web application and add data to it using model binding.
Follow the steps given below to get started:
Create a new MVC application using the ComponentOne or VisualStudio templates. For more information about creating an MVC application, see Configuring your MVC Application topic.
Back to TopFoodSale.cs
). For more information on how to add a new model, see Adding Controls.FoodSale.cs
model. We are using FoodSale
class to represent a list of hierarchical data.
C# |
Copy Code
|
---|---|
using System; using System.Collections.Generic; namespace TreeMapQuickStart.Models { public class FoodSale { private static List<string> Categories = new List<string> { "Beverages", "Condiments", "Confections", "Dairy Products", "Grains/Cereals", "Meat/Poultry", "Produce", "Seafood" }; private static List<string[]> SubCategories = new List<string[]> { new string[] { "Soft drinks", "Coffees", "Teas", "Beers", "Ales" }, new string[] { "Sweet and Savory sauces", "Relishes", "Spreads", "Seasonings" }, new string[] { "Desserts", "Candies", "Sweet breads" }, new string[] { "Chesses" }, new string[] { "Breads", "Crackers", "Pasta", "Cereal" }, new string[] { "Prepared meats" }, new string[] { "Dried fruit", "Bean curd" }, new string[] { "Seaweed", "Fish" } }; public string Category { get; set; } public string SubCategory { get; set; } public double Sales { get; set; } public static IEnumerable<FoodSale> GetData() { var result = new List<FoodSale>(); var rand = new Random(0); var index = 0; foreach (var cat in Categories) { var subCategories = SubCategories[index++]; foreach (var subCat in subCategories) { result.Add(new FoodSale { Category = cat, SubCategory = subCat, Sales = rand.NextDouble() * 100 }); } } return result; } public static IEnumerable<FoodSale> GetGroupData() { var result = new List<FoodSale>(); var rand = new Random(0); var catLen = Categories.Count; for (var i = 0; i < 1000; i++) { var randomC = rand.Next(0, catLen - 1); var subCat = SubCategories[randomC]; var randomSC = rand.Next(0, subCat.Length - 1); result.Add(new FoodSale { Category = Categories[randomC], SubCategory = subCat[randomSC], Sales = rand.NextDouble() * 100 }); } return result; } } } |
Steps to add a TreeMap control to the application, are as follows:
Add a new Controller
DashboardLayoutController
).C# |
Copy Code
|
---|---|
using <ApplicationName>.Models;
|
TreeMapController.cs |
Copy Code
|
---|---|
public ActionResult Index() { return View(FoodSale.GetData()); } |
TreeMapController.
Index()
.Index.cshtml |
Copy Code
|
---|---|
@model IEnumerable<FoodSale><c1-tree-map id="TreeMap" binding="Sales" binding-name="Category,SubCategory"> <c1-items-source source-collection="Model"></c1-items-source> \ <c1-flex-chart-datalabel position="Center" content="{name}"> </c1-flex-chart-datalabel> |