-
+
diff --git a/ej2-asp-core-mvc/code-snippet/avatar/media-formats/tagHelper b/ej2-asp-core-mvc/code-snippet/avatar/media-formats/tagHelper
index 581e772b07..39fdd4b39c 100644
--- a/ej2-asp-core-mvc/code-snippet/avatar/media-formats/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/avatar/media-formats/tagHelper
@@ -1,3 +1,10 @@
+@page
+@model AvatarUGSample.Pages.VariousAvatarMediaModel
+
+@{
+
+}
+
@@ -87,7 +94,7 @@
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/category-label/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/category-label/tagHelper
index 067e7fa8d1..6d1160da22 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/category-label/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/category-label/tagHelper
@@ -1,8 +1,15 @@
-
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new CustomCategory { value = 1500, target = 1300, category = "Product A" }
+ };
+}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/category/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/category/tagHelper
index b1bf425e63..5352cd0601 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/category/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/category/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new Category { value = 1500, target = 1300, category = "Product A" }
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/custom-label/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/custom-label/tagHelper
index ac303916d6..a8a3b6d020 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/custom-label/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/custom-label/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new CustomFormatData { value = 1500, target = 1300}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/grouping/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/grouping/tagHelper
index bf1314875c..ad917f9b81 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/grouping/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/grouping/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new Separator { value = 1500, target = 1300}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/label-format/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/label-format/tagHelper
index e48c0a32c6..cd2ba1fd75 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/label-format/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/label-format/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new FormatData { value = 1500, target = 1300}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/label-placement/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/label-placement/tagHelper
index 438d970cd7..54d707d45f 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/label-placement/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/label-placement/tagHelper
@@ -1,7 +1,14 @@
+@{
+ List bulletData = new List
+ {
+ new Placement { value = 1500, target = 1300}
+ };
+}
+
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/opposed/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/opposed/tagHelper
index ad446e6214..c324c9e12b 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/opposed/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/opposed/tagHelper
@@ -1,7 +1,14 @@
+@{
+ List bulletData = new List
+ {
+ new OpposedPositionData { value = 1500, target = 1300}
+ };
+}
+
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/tick-placement/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/tick-placement/tagHelper
index 11e86841f9..ad7210edee 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/tick-placement/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/tick-placement/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new Position { value = 1500, target = 1300}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/ticks/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/ticks/tagHelper
index 11a6823b91..24f9e88486 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/ticks/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/axis-customization/ticks/tagHelper
@@ -1,9 +1,16 @@
-
-
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new TicklinesData { value = 1500, target = 1300}
+ };
+}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/container/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/container/tagHelper
index bbe6a1b69a..f9f745014e 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/container/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/container/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new DefaultBulletData { value = 270, target = 250}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/percentage/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/percentage/tagHelper
index 84ceb0e40a..e48daaf95d 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/percentage/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/percentage/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new DefaultBulletChartData { value = 270, target = 250}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/pixel/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/pixel/tagHelper
index 71a7dfb1f3..d28bff6cdc 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/pixel/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/bullet-chart-dimensions/pixel/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new BulletData { value = 270, target = 250}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/animation/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/animation/tagHelper
index 02f31bd4e9..e69e213934 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/animation/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/animation/tagHelper
@@ -1,8 +1,15 @@
-
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new AnimationData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/orientation/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/orientation/tagHelper
index cd4fee8bf3..8dd2dc7c1e 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/orientation/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/orientation/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new OrientationData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/right-to-left/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/right-to-left/tagHelper
index 209357c151..c0aba40c52 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/right-to-left/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/right-to-left/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new RightToLeftData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/theme/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/theme/tagHelper
index 4675371d5b..99d11f1497 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/theme/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/customization/theme/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new Themes { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/data-label/data-label-custom/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/data-label/data-label-custom/tagHelper
index 5c6bc16640..4fd955aa7b 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/data-label/data-label-custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/data-label/data-label-custom/tagHelper
@@ -1,10 +1,22 @@
-
-
-
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new CustomData { value = 5, comparativeMeasureValue = 7.5, category= "2001"},
+ new CustomData { value = 7, comparativeMeasureValue = 5, category= "2002"},
+ new CustomData { value = 10, comparativeMeasureValue = 6, category= "2003"},
+ new CustomData { value = 5, comparativeMeasureValue = 8, category= "2004"},
+ new CustomData { value = 12, comparativeMeasureValue = 5, category= "2005"},
+ new CustomData { value = 8, comparativeMeasureValue = 6, category= "2006"}
+ };
+}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/data-label/data-label/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/data-label/data-label/tagHelper
index ef042f41de..79c2f0eb4c 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/data-label/data-label/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/data-label/data-label/tagHelper
@@ -1,8 +1,20 @@
-
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new Data { value = 5, comparativeMeasureValue = 7.5, category= "2001"},
+ new Data { value = 7, comparativeMeasureValue = 5, category= "2002"},
+ new Data { value = 10, comparativeMeasureValue = 6, category= "2003"},
+ new Data { value = 5, comparativeMeasureValue = 8, category= "2004"},
+ new Data { value = 12, comparativeMeasureValue = 5, category= "2005"},
+ new Data { value = 8, comparativeMeasureValue = 6, category= "2006"}
+ };
+}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/ranges/ranges-custom/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/ranges/ranges-custom/tagHelper
index dd538baf79..be7693338f 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/ranges/ranges-custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/ranges/ranges-custom/tagHelper
@@ -1,9 +1,18 @@
-
-
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new Custom { value = 55, target = 75, category = "Year 1"},
+ new Custom { value = 70, target = 70, category = "Year 2"},
+ new Custom { value = 85, target = 75, category = "Year 3"}
+ };
+}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/ranges/ranges/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/ranges/ranges/tagHelper
index 2df8e37e40..2d5c95f08b 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/ranges/ranges/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/ranges/ranges/tagHelper
@@ -1,7 +1,16 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new Range { value = 55, target = 75, category = "Year 1"},
+ new Range { value = 70, target = 70, category = "Year 2"},
+ new Range { value = 85, target = 75, category = "Year 3"}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/target-bar/target-bar/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/target-bar/target-bar/tagHelper
index 404bc1f9e3..e1ff579125 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/target-bar/target-bar/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/target-bar/target-bar/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new TargetBarData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/target-bar/target-color/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/target-bar/target-color/tagHelper
index 29a4403950..f89a926fa0 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/target-bar/target-color/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/target-bar/target-color/tagHelper
@@ -1,11 +1,15 @@
@{
var color = "red";
+ List bulletData = new List
+ {
+ new TargetBarCustomization { value = 55, target = 75 }
+ };
}
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/bottom/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/bottom/tagHelper
index 8097ea864f..214d3414e8 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/bottom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/bottom/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new BottomPositionData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/left/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/left/tagHelper
index 096d417ac9..dcfcdf759d 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/left/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/left/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new Position { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/right/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/right/tagHelper
index 2b14848cc3..128eb1e6f1 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/right/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/right/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new RightPositionData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/sub-title-custom/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/sub-title-custom/tagHelper
index 9fcdb89951..c35fb644b1 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/sub-title-custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/sub-title-custom/tagHelper
@@ -1,8 +1,15 @@
-
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new Custom { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/sub-title/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/sub-title/tagHelper
index b6d30f670a..519c173ad3 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/sub-title/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/sub-title/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new SubTitleData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/title-custom/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/title-custom/tagHelper
index 2d4d0fba5f..d0ef2d4407 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/title-custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/title-custom/tagHelper
@@ -1,8 +1,15 @@
-
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new Customization { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/title/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/title/tagHelper
index 46183e1c87..208e3f13b0 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/title/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/title/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new DefaultBulletData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/top/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/top/tagHelper
index d0e71ffc24..7b37c6ce6c 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/title/top/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/title/top/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new DefaultBulletData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/tool-tip/tool-tip/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/tool-tip/tool-tip/tagHelper
index 0b2d4b3876..20fa036d7c 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/tool-tip/tool-tip/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/tool-tip/tool-tip/tagHelper
@@ -1,8 +1,20 @@
-
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new TooltipData { value = 5, comparativeMeasureValue = 7.5, category= "2001"},
+ new TooltipData { value = 7, comparativeMeasureValue = 5, category= "2002"},
+ new TooltipData { value = 10, comparativeMeasureValue = 6, category= "2003"},
+ new TooltipData { value = 5, comparativeMeasureValue = 8, category= "2004"},
+ new TooltipData { value = 12, comparativeMeasureValue = 5, category= "2005"},
+ new TooltipData { value = 8, comparativeMeasureValue = 6, category= "2006"}
+ };
+}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/types/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/types/tagHelper
index 86c106dd9d..f32b8c4c35 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/types/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/types/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new ActualBarTypeData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-bar/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-bar/tagHelper
index 2b17d0f906..c700258c2c 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-bar/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-bar/tagHelper
@@ -1,7 +1,14 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new DefaultBulletData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-border/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-border/tagHelper
index e21a0d6e18..74b1fb6d00 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-border/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-border/tagHelper
@@ -1,8 +1,15 @@
-
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new CustomBorderData { value = 55, target = 75}
+ };
+}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-fill/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-fill/tagHelper
index e32efc8f1a..fcd0b733f6 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-fill/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/value-bar/value-fill/tagHelper
@@ -1,11 +1,15 @@
@{
var color = "blue";
+ List bulletData = new List
+ {
+ new FillColorCustomization { value = 55, target = 75 }
+ };
}
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/bullet-chart/working-with-data/working-with-data/tagHelper b/ej2-asp-core-mvc/code-snippet/bullet-chart/working-with-data/working-with-data/tagHelper
index c857b92164..2a22145463 100644
--- a/ej2-asp-core-mvc/code-snippet/bullet-chart/working-with-data/working-with-data/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/bullet-chart/working-with-data/working-with-data/tagHelper
@@ -1,7 +1,19 @@
-
-
-
-
-
-
+@{
+ List bulletData = new List
+ {
+ new LocalBulletData { value = 5, comparativeMeasureValue = 7.5, category= "2001"},
+ new LocalBulletData { value = 7, comparativeMeasureValue = 5, category= "2002"},
+ new LocalBulletData { value = 10, comparativeMeasureValue = 6, category= "2003"},
+ new LocalBulletData { value = 5, comparativeMeasureValue = 8, category= "2004"},
+ new LocalBulletData { value = 12, comparativeMeasureValue = 5, category= "2005"},
+ new LocalBulletData { value = 8, comparativeMeasureValue = 6, category= "2006"}
+ };
+}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/alignment/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/alignment/tagHelper
index 0b8ec3d1aa..f2b87fdeaa 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/alignment/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/alignment/tagHelper
@@ -1,13 +1,24 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { x = "Chrome", y = 37 },
+ new PieChartData { x = "UC Browser", y = 17 },
+ new PieChartData { x = "iPhone", y = 19 },
+ new PieChartData { x = "Others", y = 4 },
+ new PieChartData { x = "Opera", y = 11 },
+ new PieChartData { x = "Android", y = 12 },
+ };
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/annotation/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/annotation/tagHelper
index 7413191118..72cb4fc28f 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/annotation/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/annotation/tagHelper
@@ -1,11 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/co-ordinate/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/co-ordinate/tagHelper
index 512ff7812c..030d49140a 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/co-ordinate/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/co-ordinate/tagHelper
@@ -1,11 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
+@{
+ List chartData = new List
+ {
+ new PieChartData { x = "Chrome", y = 37 },
+ new PieChartData { x = "UC Browser", y = 17 },
+ new PieChartData { x = "iPhone", y = 19 },
+ new PieChartData { x = "Others", y = 4 },
+ new PieChartData { x = "Opera", y = 11 },
+ new PieChartData { x = "Android", y = 12 },
+ };
+}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/region/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/region/tagHelper
index c0c6da75a1..030d49140a 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/region/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/annotation/region/tagHelper
@@ -1,13 +1,23 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { x = "Chrome", y = 37 },
+ new PieChartData { x = "UC Browser", y = 17 },
+ new PieChartData { x = "iPhone", y = 19 },
+ new PieChartData { x = "Others", y = 4 },
+ new PieChartData { x = "Opera", y = 11 },
+ new PieChartData { x = "Android", y = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/centerlabel/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/centerlabel/tagHelper
index 46cd5ccd34..cabaef8c31 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/centerlabel/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/centerlabel/tagHelper
@@ -1,6 +1,18 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { x = "Chrome", y = 61.3, text = "Chrome: 61.3%"},
+ new PieChartData { x = "Safari", y = 24.6, text = "Safari: 24.6%"},
+ new PieChartData { x = "Edge", y = 5.0, text = "Edge: 5.0%"},
+ new PieChartData { x = "Samsung Internet", y = 2.7, text = "Samsung Internet: 2.7%"},
+ new PieChartData { x = "Firefox", y = 2.6, text = "Firefox: 2.6%"},
+ new PieChartData { x = "Others", y = 3.6, text = "Others: 3.6%"}
+ };
+}
+
-
+
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/customization/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/customization/tagHelper
index fb915d8a98..64c3d003d9 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/customization/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/customization/tagHelper
@@ -1,6 +1,18 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { x = "Chrome", y = 61.3, text = "Chrome: 61.3%"},
+ new PieChartData { x = "Safari", y = 24.6, text = "Safari: 24.6%"},
+ new PieChartData { x = "Edge", y = 5.0, text = "Edge: 5.0%"},
+ new PieChartData { x = "Samsung Internet", y = 2.7, text = "Samsung Internet: 2.7%"},
+ new PieChartData { x = "Firefox", y = 2.6, text = "Firefox: 2.6%"},
+ new PieChartData { x = "Others", y = 3.6, text = "Others: 3.6%"}
+ };
+}
+
-
+
@@ -8,4 +20,4 @@
-
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/hovertext/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/hovertext/tagHelper
index 553af639df..8fe5f114d0 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/hovertext/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/chart-print/hovertext/tagHelper
@@ -1,11 +1,22 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { x = "Chrome", y = 61.3, text = "Chrome: 61.3%"},
+ new PieChartData { x = "Safari", y = 24.6, text = "Safari: 24.6%"},
+ new PieChartData { x = "Edge", y = 5.0, text = "Edge: 5.0%"},
+ new PieChartData { x = "Samsung Internet", y = 2.7, text = "Samsung Internet: 2.7%"},
+ new PieChartData { x = "Firefox", y = 2.6, text = "Firefox: 2.6%"},
+ new PieChartData { x = "Others", y = 3.6, text = "Others: 3.6%"}
+ };
+}
+
-
+
+ hoverTextFormat="${point.x}
Browser Share
${point.y}%">
-
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/connector/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/connector/tagHelper
index 6d9c6ce8e5..7557fd3825 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/connector/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/connector/tagHelper
@@ -1,15 +1,22 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/custom/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/custom/tagHelper
index ec0007062e..c3b83c03da 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/custom/tagHelper
@@ -1,21 +1,30 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/default/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/default/tagHelper
index 4b8a6ee595..02848a5772 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/default/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/default/tagHelper
@@ -1,11 +1,20 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/format/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/format/tagHelper
index 511583cfc0..afe628240c 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/format/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/format/tagHelper
@@ -1,13 +1,21 @@
- @section ControlsSection{
-
-
-
-
-
-
-
-
-
-
- }
\ No newline at end of file
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/map/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/map/tagHelper
index cb3a43e6d5..fb530c2ccf 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/map/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/map/tagHelper
@@ -1,11 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/percentage/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/percentage/tagHelper
index b499f8241e..663c7b5b32 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/percentage/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/percentage/tagHelper
@@ -1,16 +1,26 @@
-
-
-
-
-
-
-
-
-
-
-
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/position/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/position/tagHelper
index 4295f0fd3a..45e5738383 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/position/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/position/tagHelper
@@ -1,13 +1,20 @@
-
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/smartlabels/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/smartlabels/tagHelper
index 14b763bbc8..f258a28d94 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/smartlabels/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/smartlabels/tagHelper
@@ -1,12 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/template-percentage/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/template-percentage/tagHelper
index 736addad00..400b74f084 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/template-percentage/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/template-percentage/tagHelper
@@ -1,11 +1,20 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/template/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/template/tagHelper
index 6d622d98ff..4358ec17c2 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/template/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/template/tagHelper
@@ -1,13 +1,27 @@
- @section ControlsSection{
-
-
-
-
-
- " + "${point.y}
">
-
-
-
-
- }
\ No newline at end of file
+@{
+ List
chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/textwrap/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/textwrap/tagHelper
index afb3b6b7f4..7ee317eba7 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/textwrap/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/datalabel/textwrap/tagHelper
@@ -1,13 +1,21 @@
- @section ControlsSection{
-
-
-
-
-
-
-
-
-
-
- }
\ No newline at end of file
+@{
+ List chartData = new List
+ {
+ new PieChartData { x = "Chrome", y = 100, text= "Chrome (100M)
40%", tooltipMappingName= "40%" },
+ new PieChartData { x=" UC Browser", y= 40, text= "UC Browser (40M)
16%", tooltipMappingName= "16%" },
+ new PieChartData { x= "Opera" , y= 30, text= "Opera (30M)
12%", tooltipMappingName= "12%" },
+ new PieChartData { x= "Safari", y= 30, text= "Safari (30M)
12%", tooltipMappingName= "12%" },
+ };
+}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/empty-points/custom/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/empty-points/custom/tagHelper
index de60ae91fd..0f45dec42e 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/empty-points/custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/empty-points/custom/tagHelper
@@ -1,14 +1,27 @@
+@{
+ List chartData = new List
+ {
+ new EmptyPointsChartData { xValue = "Rice", yValue = 80 },
+ new EmptyPointsChartData { xValue = "Wheat", yValue = null },
+ new EmptyPointsChartData { xValue = "Oil", yValue = 70 },
+ new EmptyPointsChartData { xValue = "Corn", yValue = 60 },
+ new EmptyPointsChartData { xValue = "Gram", yValue = null },
+ new EmptyPointsChartData { xValue = "Milk", yValue = 70 },
+ new EmptyPointsChartData { xValue = "Peas", yValue = 80 },
+ new EmptyPointsChartData { xValue = "Fruit", yValue = 60 },
+ new EmptyPointsChartData { xValue = "Butter",yValue = null },
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/empty-points/empty/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/empty-points/empty/tagHelper
index 4cffe5b5e7..27275348f4 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/empty-points/empty/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/empty-points/empty/tagHelper
@@ -1,14 +1,27 @@
+@{
+ List chartData = new List
+ {
+ new EmptyPointsChartData { xValue = "Rice", yValue = 80 },
+ new EmptyPointsChartData { xValue = "Wheat", yValue = null },
+ new EmptyPointsChartData { xValue = "Oil", yValue = 70 },
+ new EmptyPointsChartData { xValue = "Corn", yValue = 60 },
+ new EmptyPointsChartData { xValue = "Gram", yValue = null },
+ new EmptyPointsChartData { xValue = "Milk", yValue = 70 },
+ new EmptyPointsChartData { xValue = "Peas", yValue = 80 },
+ new EmptyPointsChartData { xValue = "Fruit", yValue = 60 },
+ new EmptyPointsChartData { xValue = "Butter",yValue = null }
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/custom/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/custom/tagHelper
index 5cac7fd362..8f5ad9037c 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/custom/tagHelper
@@ -1,21 +1,32 @@
+@{
+ List chartData = new List
+ {
+ new FunnelChartData { xValue = "Chrome", yValue = 37 },
+ new FunnelChartData { xValue = "UC Browser", yValue = 17 },
+ new FunnelChartData { xValue = "iPhone", yValue = 19 },
+ new FunnelChartData { xValue = "Others", yValue = 4 },
+ new FunnelChartData { xValue = "Opera", yValue = 11 },
+ new FunnelChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/data-label/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/data-label/tagHelper
index 7505c91a9d..1734c025eb 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/data-label/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/data-label/tagHelper
@@ -1,13 +1,37 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+@page
+@using static PyramidFunnelTypeSample.Pages.FunnelSmartLabelModel
+@model PyramidFunnelTypeSample.Pages.FunnelSmartLabelModel
+@{
+ List chartData = new List
+ {
+ new FunnelData { xValue = "China", yValue = 1409517397, text = "China" },
+ new FunnelData { xValue = "India", yValue = 1339180127, text = "India" },
+ new FunnelData { xValue = "United States", yValue = 324459463, text = "United States" },
+ new FunnelData { xValue = "Indonesia", yValue = 263991379, text = "Indonesia" },
+ new FunnelData { xValue = "Brazil", yValue = 209288278, text = "Brazil" },
+ new FunnelData { xValue = "Pakistan", yValue = 197015955, text = "Pakistan" },
+ new FunnelData { xValue = "Nigeria", yValue = 190886311, text = "Nigeria" },
+ new FunnelData { xValue = "Bangladesh", yValue = 164669751, text = "Bangladesh" },
+ new FunnelData { xValue = "Russia", yValue = 143989754, text = "Russia" },
+ new FunnelData { xValue = "Mexico", yValue = 129163276, text = "Mexico" },
+ new FunnelData { xValue = "Japan", yValue = 127484450, text = " Japan" },
+ new FunnelData { xValue = "Ethiopia", yValue = 104957438, text = "Ethiopia" },
+ new FunnelData { xValue = "Philippines", yValue = 104918090, text = "Philippines" },
+ new FunnelData { xValue = "Egypt", yValue = 97553151, text = "Egypt" },
+ new FunnelData { xValue = "Vietnam", yValue = 95540800, text = "Vietnam" },
+ new FunnelData { xValue = "Germany", yValue = 82114224, text = "Germany" },
+ };
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/default/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/default/tagHelper
index 83532d36d3..97be3afa6c 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/default/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/default/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new FunnelChartData { xValue = "Chrome", yValue = 37 },
+ new FunnelChartData { xValue = "UC Browser", yValue = 17 },
+ new FunnelChartData { xValue = "iPhone", yValue = 19 },
+ new FunnelChartData { xValue = "Others", yValue = 4 },
+ new FunnelChartData { xValue = "Opera", yValue = 11 },
+ new FunnelChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/explode/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/explode/tagHelper
index c388becc38..17fdd276b5 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/explode/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/explode/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new FunnelChartData { xValue = "Chrome", yValue = 37 },
+ new FunnelChartData { xValue = "UC Browser", yValue = 17 },
+ new FunnelChartData { xValue = "iPhone", yValue = 19 },
+ new FunnelChartData { xValue = "Others", yValue = 4 },
+ new FunnelChartData { xValue = "Opera", yValue = 11 },
+ new FunnelChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/gap/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/gap/tagHelper
index 313840c1ec..87e26c8126 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/gap/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/gap/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new FunnelChartData { xValue = "Chrome", yValue = 37 },
+ new FunnelChartData { xValue = "UC Browser", yValue = 17 },
+ new FunnelChartData { xValue = "iPhone", yValue = 19 },
+ new FunnelChartData { xValue = "Others", yValue = 4 },
+ new FunnelChartData { xValue = "Opera", yValue = 11 },
+ new FunnelChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/neck-size/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/neck-size/tagHelper
index 5e2dd7e833..970c4ee726 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/neck-size/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/neck-size/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new FunnelChartData { xValue = "Chrome", yValue = 37 },
+ new FunnelChartData { xValue = "UC Browser", yValue = 17 },
+ new FunnelChartData { xValue = "iPhone", yValue = 19 },
+ new FunnelChartData { xValue = "Others", yValue = 4 },
+ new FunnelChartData { xValue = "Opera", yValue = 11 },
+ new FunnelChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/size/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/size/tagHelper
index 8125ffbf1f..f804d2b4bc 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/size/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/funnel/size/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new FunnelChartData { xValue = "Chrome", yValue = 37 },
+ new FunnelChartData { xValue = "UC Browser", yValue = 17 },
+ new FunnelChartData { xValue = "iPhone", yValue = 19 },
+ new FunnelChartData { xValue = "Others", yValue = 4 },
+ new FunnelChartData { xValue = "Opera", yValue = 11 },
+ new FunnelChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/custom/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/custom/tagHelper
index c85a557145..67c8306a6f 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/custom/tagHelper
@@ -1,30 +1,49 @@
+@{
+ List chartData = new List
+ {
+ new GroupingChartData { xValue = "China", yValue = 26, text = "China: 26" },
+ new GroupingChartData { xValue = "Russia", yValue = 19, text = "Russia: 19" },
+ new GroupingChartData { xValue = "Germany", yValue = 17, text = "Germany: 17" },
+ new GroupingChartData { xValue = "Japan", yValue = 12, text = "Japan: 12" },
+ new GroupingChartData { xValue = "France", yValue = 10, text = "France: 10" },
+ new GroupingChartData { xValue = "South Korea", yValue = 9, text = "South Korea: 9" },
+ new GroupingChartData { xValue = "Great Britain", yValue = 27, text = "Great Britain: 27" },
+ new GroupingChartData { xValue = "Italy", yValue = 8, text = "Italy: 8" },
+ new GroupingChartData { xValue = "Australia", yValue = 8, text = "Australia: 8" },
+ new GroupingChartData { xValue = "Netherlands", yValue = 8, text = "Netherlands: 8" },
+ new GroupingChartData { xValue = "Hungary", yValue = 8, text = "Hungary: 8" },
+ new GroupingChartData { xValue = "Brazil", yValue = 7, text = "Brazil: 7" },
+ new GroupingChartData { xValue = "Spain", yValue = 7, text = "Spain: 7" },
+ new GroupingChartData { xValue = "Kenya", yValue = 6, text = "Kenya: 6" }
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/group/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/group/tagHelper
index 58362760cd..6b31a53b7e 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/group/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/group/tagHelper
@@ -1,14 +1,32 @@
+@{
+ List chartData = new List
+ {
+ new GroupingChartData { xValue = "China", yValue = 26, text = "China: 26" },
+ new GroupingChartData { xValue = "Russia", yValue = 19, text = "Russia: 19" },
+ new GroupingChartData { xValue = "Germany", yValue = 17, text = "Germany: 17" },
+ new GroupingChartData { xValue = "Japan", yValue = 12, text = "Japan: 12" },
+ new GroupingChartData { xValue = "France", yValue = 10, text = "France: 10" },
+ new GroupingChartData { xValue = "South Korea", yValue = 9, text = "South Korea: 9" },
+ new GroupingChartData { xValue = "Great Britain", yValue = 27, text = "Great Britain: 27" },
+ new GroupingChartData { xValue = "Italy", yValue = 8, text = "Italy: 8" },
+ new GroupingChartData { xValue = "Australia", yValue = 8, text = "Australia: 8" },
+ new GroupingChartData { xValue = "Netherlands", yValue = 8, text = "Netherlands: 8" },
+ new GroupingChartData { xValue = "Hungary", yValue = 8, text = "Hungary: 8" },
+ new GroupingChartData { xValue = "Brazil", yValue = 7, text = "Brazil: 7" },
+ new GroupingChartData { xValue = "Spain", yValue = 7, text = "Spain: 7" },
+ new GroupingChartData { xValue = "Kenya", yValue = 6, text = "Kenya: 6" }
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/groupmode/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/groupmode/tagHelper
index 3ade2c8a8a..6f2a644ed6 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/groupmode/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/groupmode/tagHelper
@@ -1,6 +1,26 @@
-
+@{
+ List chartData = new List
+ {
+ new GroupingChartData { xValue = "China", yValue = 26, text = "China: 26" },
+ new GroupingChartData { xValue = "Russia", yValue = 19, text = "Russia: 19" },
+ new GroupingChartData { xValue = "Germany", yValue = 17, text = "Germany: 17" },
+ new GroupingChartData { xValue = "Japan", yValue = 12, text = "Japan: 12" },
+ new GroupingChartData { xValue = "France", yValue = 10, text = "France: 10" },
+ new GroupingChartData { xValue = "South Korea", yValue = 9, text = "South Korea: 9" },
+ new GroupingChartData { xValue = "Great Britain", yValue = 27, text = "Great Britain: 27" },
+ new GroupingChartData { xValue = "Italy", yValue = 8, text = "Italy: 8" },
+ new GroupingChartData { xValue = "Australia", yValue = 8, text = "Australia: 8" },
+ new GroupingChartData { xValue = "Netherlands", yValue = 8, text = "Netherlands: 8" },
+ new GroupingChartData { xValue = "Hungary", yValue = 8, text = "Hungary: 8" },
+ new GroupingChartData { xValue = "Brazil", yValue = 7, text = "Brazil: 7" },
+ new GroupingChartData { xValue = "Spain", yValue = 7, text = "Spain: 7" },
+ new GroupingChartData { xValue = "Kenya", yValue = 6, text = "Kenya: 6" }
+ };
+}
+
+
-
+
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/slice/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/slice/tagHelper
index a59e38d61a..f362c25fca 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/slice/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/grouping/slice/tagHelper
@@ -1,6 +1,26 @@
-
+@{
+ List chartData = new List
+ {
+ new GroupingChartData { xValue = "China",yValue = 26, text = "China: 26" },
+ new GroupingChartData { xValue = "Russia", yValue = 19, text = "Russia: 19" },
+ new GroupingChartData { xValue = "Germany", yValue = 17, text = "Germany: 17" },
+ new GroupingChartData { xValue = "Japan", yValue = 12, text = "Japan: 12" },
+ new GroupingChartData { xValue = "France", yValue = 10, text = "France: 10" },
+ new GroupingChartData { xValue = "South Korea", yValue = 9, text = "South Korea: 9" },
+ new GroupingChartData { xValue = "Great Britain", yValue = 27, text = "Great Britain: 27" },
+ new GroupingChartData { xValue = "Italy", yValue = 8, text = "Italy: 8" },
+ new GroupingChartData { xValue = "Australia", yValue = 8, text = "Australia: 8" },
+ new GroupingChartData { xValue = "Netherlands", yValue = 8, text = "Netherlands: 8" },
+ new GroupingChartData { xValue = "Hungary", yValue = 8, text = "Hungary: 8" },
+ new GroupingChartData { xValue = "Brazil", yValue = 7, text = "Brazil: 7" },
+ new GroupingChartData { xValue = "Spain", yValue = 7, text = "Spain: 7" },
+ new GroupingChartData { xValue = "Kenya", yValue = 6, text = "Kenya: 6" }
+ };
+}
+
+
-
+
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/accumulation-animation/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/accumulation-animation/tagHelper
index 1a2b3da5a4..8c1dcc82e9 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/accumulation-animation/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/accumulation-animation/tagHelper
@@ -1,8 +1,28 @@
+@{
+ List chartData = new List
+ {
+ new GroupingChartData { xValue = "China", yValue = 26, text = "China: 26" },
+ new GroupingChartData { xValue = "Russia", yValue = 19, text = "Russia: 19" },
+ new GroupingChartData { xValue = "Germany", yValue = 17, text = "Germany: 17" },
+ new GroupingChartData { xValue = "Japan", yValue = 12, text = "Japan: 12" },
+ new GroupingChartData { xValue = "France", yValue = 10, text = "France: 10" },
+ new GroupingChartData { xValue = "South Korea", yValue = 9, text = "South Korea: 9" },
+ new GroupingChartData { xValue = "Great Britain", yValue = 27, text = "Great Britain: 27" },
+ new GroupingChartData { xValue = "Italy", yValue = 8, text = "Italy: 8" },
+ new GroupingChartData { xValue = "Australia", yValue = 8, text = "Australia: 8" },
+ new GroupingChartData { xValue = "Netherlands", yValue = 8, text = "Netherlands: 8" },
+ new GroupingChartData { xValue = "Hungary", yValue = 8, text = "Hungary: 8" },
+ new GroupingChartData { xValue = "Brazil", yValue = 7, text = "Brazil: 7" },
+ new GroupingChartData { xValue = "Spain", yValue = 7, text = "Spain: 7" },
+ new GroupingChartData { xValue = "Kenya", yValue = 6, text = "Kenya: 6" }
+ };
+}
+
-
+
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/arrow-page/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/arrow-page/tagHelper
index 63ffb778f7..90d1e84143 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/arrow-page/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/arrow-page/tagHelper
@@ -1,9 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/default/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/default/tagHelper
index 30ccbe0622..3cb67c28d7 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/default/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/default/tagHelper
@@ -1,10 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/item-size/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/item-size/tagHelper
index 8d7597d77c..f362785719 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/item-size/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/item-size/tagHelper
@@ -1,10 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/itemPadding/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/itemPadding/tagHelper
index b87e7f2d41..a8c0182520 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/itemPadding/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/itemPadding/tagHelper
@@ -1,9 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/legend-shape/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/legend-shape/tagHelper
index da10aa88d6..443b210bcb 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/legend-shape/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/legend-shape/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/paging/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/paging/tagHelper
index dfc54ff3b3..7127f8d1ad 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/paging/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/paging/tagHelper
@@ -1,10 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/position/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/position/tagHelper
index 505e1b9bfb..55a6d4c03d 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/position/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/position/tagHelper
@@ -1,10 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/reverse/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/reverse/tagHelper
index a3a57a3629..85984297ad 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/reverse/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/reverse/tagHelper
@@ -1,8 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
+
-
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/size/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/size/tagHelper
index 2be7cecfc3..2fbf50eca5 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/size/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/size/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/text-wrap/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/text-wrap/tagHelper
index 45390248a5..139c3a94bb 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/text-wrap/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/text-wrap/tagHelper
@@ -1,8 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
+
-
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/title/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/title/tagHelper
index 1106d365c0..a3b8176c93 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/title/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/legend/title/tagHelper
@@ -1,9 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/border/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/border/tagHelper
index 2e9a223f07..e38e0e661b 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/border/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/border/tagHelper
@@ -1,9 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/custom/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/custom/tagHelper
index 3405f5eaad..ef7e025367 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/custom/tagHelper
@@ -1,20 +1,31 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/doughnut/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/doughnut/tagHelper
index 8c55bbf25b..89df362752 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/doughnut/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/doughnut/tagHelper
@@ -1,10 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/map/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/map/tagHelper
index ecb3004898..ab6dd97d02 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/map/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/map/tagHelper
@@ -1,13 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%", fill="#498fff"},
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%", fill="#ffa060"},
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%", fill="#ff68b6"},
+ new PieChartData { xValue = "Others", yValue = 4 , text = "4%", fill="#81e2a1"},
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/palette/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/palette/tagHelper
index 073661e0e3..2af41b73fc 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/palette/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/palette/tagHelper
@@ -1,9 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+ var palette = new string[] { "teal", "skyblue", "green", "red"};
+}
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/pie/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/pie/tagHelper
index 2d7e0eba8f..166a014817 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/pie/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/pie/tagHelper
@@ -1,10 +1,22 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/piecenter/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/piecenter/tagHelper
index 7e11923aeb..c0bb726dad 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/piecenter/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/piecenter/tagHelper
@@ -1,26 +1,25 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37, text = "37%" },
+ new PieChartData { xValue = "UC Browser", yValue = 17, text = "17%" },
+ new PieChartData { xValue = "iPhone", yValue = 19, text = "19%" },
+ new PieChartData { xValue = "Others", yValue = 4, text = "4%" },
+ new PieChartData { xValue = "Opera", yValue = 11, text = "11%" },
+ new PieChartData { xValue = "Android", yValue = 12, text = "12%" }
+ };
+}
-
- @{
- var piecenter = new
- {
- x = "60%",
- y = "60%"
- };
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/radius/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/radius/tagHelper
index fba55fd6de..67d2f134a6 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/radius/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/radius/tagHelper
@@ -1,11 +1,20 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/start-angle/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/start-angle/tagHelper
index b476914e2e..4aa9979578 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/start-angle/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/start-angle/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/sub-title-cus/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/sub-title-cus/tagHelper
index 72475db8d2..e99c9aa311 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/sub-title-cus/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/sub-title-cus/tagHelper
@@ -1,14 +1,25 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Saudi Arabia", yValue = 58, text = "58%"},
+ new PieChartData { xValue = "Persian Gulf", yValue = 15, text = "15%"},
+ new PieChartData { xValue = "Canada", yValue = 13, text = "13%"},
+ new PieChartData { xValue = "Venezuela", yValue = 8 , text = "8%"},
+ new PieChartData { xValue = "Mexico", yValue = 3 , text = "3%"},
+ new PieChartData { xValue = "Russia", yValue = 2, text = "2%"},
+ new PieChartData { xValue = "Miscellaneous", yValue = 1, text = "1%"}
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/sub-title/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/sub-title/tagHelper
index 5f460008cd..7b9acdc2dd 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/sub-title/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/sub-title/tagHelper
@@ -1,12 +1,23 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Saudi Arabia", yValue = 58, text = "58%"},
+ new PieChartData { xValue = "Persian Gulf", yValue = 15, text = "15%"},
+ new PieChartData { xValue = "Canada", yValue = 13, text = "13%"},
+ new PieChartData { xValue = "Venezuela", yValue = 8 , text = "8%"},
+ new PieChartData { xValue = "Mexico", yValue = 3 , text = "3%"},
+ new PieChartData { xValue = "Russia", yValue = 2, text = "2%"},
+ new PieChartData { xValue = "Miscellaneous", yValue = 1, text = "1%"}
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/title-cus/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/title-cus/tagHelper
index 2d7e0eba8f..b69ce58a90 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/title-cus/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/title-cus/tagHelper
@@ -1,10 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Saudi Arabia", yValue = 58, text = "58%"},
+ new PieChartData { xValue = "Persian Gulf", yValue = 15, text = "15%"},
+ new PieChartData { xValue = "Canada", yValue = 13, text = "13%"},
+ new PieChartData { xValue = "Venezuela", yValue = 8 , text = "8%"},
+ new PieChartData { xValue = "Mexico", yValue = 3 , text = "3%"},
+ new PieChartData { xValue = "Russia", yValue = 2, text = "2%"},
+ new PieChartData { xValue = "Miscellaneous", yValue = 1, text = "1%"}
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/title/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/title/tagHelper
index 97f2383fc8..2291f99f5f 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/title/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/title/tagHelper
@@ -1,14 +1,25 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Saudi Arabia", yValue = 58, text = "58%"},
+ new PieChartData { xValue = "Persian Gulf", yValue = 15, text = "15%"},
+ new PieChartData { xValue = "Canada", yValue = 13, text = "13%"},
+ new PieChartData { xValue = "Venezuela", yValue = 8 , text = "8%"},
+ new PieChartData { xValue = "Mexico", yValue = 3 , text = "3%"},
+ new PieChartData { xValue = "Russia", yValue = 2, text = "2%"},
+ new PieChartData { xValue = "Miscellaneous", yValue = 1, text = "1%"}
+ };
+}
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/various-radius/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/various-radius/tagHelper
index 8594e3d062..575f7866ce 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/various-radius/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pie-doughnut/various-radius/tagHelper
@@ -1,12 +1,25 @@
+@{
+ List chartData = new List
+ {
+ new PieRadiusChartData { xValue = "Argentina", yValue = 505370, r = "100"},
+ new PieRadiusChartData { xValue = "Belgium", yValue = 551500, r = "118.7"},
+ new PieRadiusChartData { xValue = "Cuba", yValue = 312685 , r = "124.6"},
+ new PieRadiusChartData { xValue = "Dominican Republic", yValue = 350000 , r = "137.5"},
+ new PieRadiusChartData { xValue = "Egypt", yValue = 301000 , r = "150.8"},
+ new PieRadiusChartData { xValue = "Kazakhstan", yValue = 300000, r = "155.5"},
+ new PieRadiusChartData { xValue = "Somalia", yValue = 357022, r = "160.6"}
-
-
-
-
-
-
-
-
-
-
-
+ };
+}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/custom/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/custom/tagHelper
index a26c26f0c8..2272549dda 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/custom/tagHelper
@@ -1,21 +1,33 @@
+@{
+ List chartData = new List
+ {
-
-
-
-
-
-
-
-
+ new PyramidChartData { xValue = "Chrome", yValue = 37 },
+ new PyramidChartData { xValue = "UC Browser", yValue = 17 },
+ new PyramidChartData { xValue = "iPhone", yValue = 19 },
+ new PyramidChartData { xValue = "Others", yValue = 4 },
+ new PyramidChartData { xValue = "Opera", yValue = 11 },
+ new PyramidChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/default/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/default/tagHelper
index 5930f809dd..10f186eb06 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/default/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/default/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PyramidChartData { xValue = "Chrome", yValue = 37 },
+ new PyramidChartData { xValue = "UC Browser", yValue = 17 },
+ new PyramidChartData { xValue = "iPhone", yValue = 19 },
+ new PyramidChartData { xValue = "Others", yValue = 14 },
+ new PyramidChartData { xValue = "Opera", yValue = 11 },
+ new PyramidChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/explode/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/explode/tagHelper
index 881f9fad19..d1945c9248 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/explode/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/explode/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PyramidChartData { xValue = "Chrome", yValue = 37 },
+ new PyramidChartData { xValue = "UC Browser", yValue = 17 },
+ new PyramidChartData { xValue = "iPhone", yValue = 19 },
+ new PyramidChartData { xValue = "Others", yValue = 4 },
+ new PyramidChartData { xValue = "Opera", yValue = 11 },
+ new PyramidChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/gap/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/gap/tagHelper
index e6a6cdd910..0442124a23 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/gap/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/gap/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PyramidChartData { xValue = "Chrome", yValue = 37 },
+ new PyramidChartData { xValue = "UC Browser", yValue = 17 },
+ new PyramidChartData { xValue = "iPhone", yValue = 19 },
+ new PyramidChartData { xValue = "Others", yValue = 4 },
+ new PyramidChartData { xValue = "Opera", yValue = 11 },
+ new PyramidChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/mode/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/mode/tagHelper
index 0df41b847e..aeaae33a10 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/mode/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/mode/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PyramidChartData { xValue = "Chrome", yValue = 37 },
+ new PyramidChartData { xValue = "UC Browser", yValue = 17 },
+ new PyramidChartData { xValue = "iPhone", yValue = 19 },
+ new PyramidChartData { xValue = "Others", yValue = 4 },
+ new PyramidChartData { xValue = "Opera", yValue = 11 },
+ new PyramidChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/size/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/size/tagHelper
index be23a73665..62f27cc55a 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/size/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/pyramid/size/tagHelper
@@ -1,11 +1,22 @@
+@{
+ List chartData = new List
+ {
+ new PyramidChartData { xValue = "Chrome", yValue = 37 },
+ new PyramidChartData { xValue = "UC Browser", yValue = 17 },
+ new PyramidChartData { xValue = "iPhone", yValue = 19 },
+ new PyramidChartData { xValue = "Others", yValue = 4 },
+ new PyramidChartData { xValue = "Opera", yValue = 11 },
+ new PyramidChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/custom/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/custom/tagHelper
index 9c00ee8724..bd2a27ddbf 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/custom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/custom/tagHelper
@@ -1,12 +1,22 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/default/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/default/tagHelper
index d2f07a7857..caeb294968 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/default/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/default/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/format/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/format/tagHelper
index 4fda3f5bf9..3971620b28 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/format/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/format/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/header/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/header/tagHelper
index b7dd697f3b..06d40a7f50 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/header/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/header/tagHelper
@@ -1,11 +1,21 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/individual/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/individual/tagHelper
index 9a91d3a1dd..bd311bdb8f 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/individual/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/individual/tagHelper
@@ -1,19 +1,30 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/mapping/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/mapping/tagHelper
index 453782006c..8f67ab7a29 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/mapping/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/mapping/tagHelper
@@ -1,9 +1,29 @@
+@{
+ List chartData = new List
+ {
+ new GroupingChartData { xValue = "China", yValue = 26, text = "China: 26" },
+ new GroupingChartData { xValue = "Russia", yValue = 19, text = "Russia: 19" },
+ new GroupingChartData { xValue = "Germany", yValue = 17, text = "Germany: 17" },
+ new GroupingChartData { xValue = "Japan", yValue = 12, text = "Japan: 12" },
+ new GroupingChartData { xValue = "France", yValue = 10, text = "France: 10" },
+ new GroupingChartData { xValue = "South Korea", yValue = 9, text = "South Korea: 9" },
+ new GroupingChartData { xValue = "Great Britain", yValue = 27, text = "Great Britain: 27" },
+ new GroupingChartData { xValue = "Italy", yValue = 8, text = "Italy: 8" },
+ new GroupingChartData { xValue = "Australia", yValue = 8, text = "Australia: 8" },
+ new GroupingChartData { xValue = "Netherlands", yValue = 8, text = "Netherlands: 8" },
+ new GroupingChartData { xValue = "Hungary", yValue = 8, text = "Hungary: 8" },
+ new GroupingChartData { xValue = "Brazil", yValue = 7, text = "Brazil: 7" },
+ new GroupingChartData { xValue = "Spain", yValue = 7, text = "Spain: 7" },
+ new GroupingChartData { xValue = "Kenya", yValue = 6, text = "Kenya: 6" }
+ };
+}
+
-
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/tooltip-format/tagHelper b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/tooltip-format/tagHelper
index ebbee2a072..4b93509fdc 100644
--- a/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/tooltip-format/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/chart/accumulation-charts/tooltip/tooltip-format/tagHelper
@@ -1,15 +1,28 @@
+@{
+ List chartData = new List
+ {
+ new PieChartData { xValue = "Chrome", yValue = 37 },
+ new PieChartData { xValue = "UC Browser", yValue = 17 },
+ new PieChartData { xValue = "iPhone", yValue = 19 },
+ new PieChartData { xValue = "Others", yValue = 4 },
+ new PieChartData { xValue = "Opera", yValue = 11 },
+ new PieChartData { xValue = "Android", yValue = 12 },
+ };
+}
-
- " +
- "${y}
" ))
- >
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/circulargauge/gauge-animation/tagHelper b/ej2-asp-core-mvc/code-snippet/circulargauge/gauge-animation/tagHelper
index 7a8dc69ac3..05480df3f5 100644
--- a/ej2-asp-core-mvc/code-snippet/circulargauge/gauge-animation/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/circulargauge/gauge-animation/tagHelper
@@ -6,13 +6,11 @@
-
+
-
-
diff --git a/ej2-asp-core-mvc/code-snippet/gantt/how-to/draganddrop/razor b/ej2-asp-core-mvc/code-snippet/gantt/how-to/draganddrop/razor
index 674bbab575..92699603a7 100644
--- a/ej2-asp-core-mvc/code-snippet/gantt/how-to/draganddrop/razor
+++ b/ej2-asp-core-mvc/code-snippet/gantt/how-to/draganddrop/razor
@@ -14,6 +14,7 @@
)
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/gantt/how-to/draganddrop/tagHelper b/ej2-asp-core-mvc/code-snippet/gantt/how-to/draganddrop/tagHelper
index 1013781e39..9b334e3e09 100644
--- a/ej2-asp-core-mvc/code-snippet/gantt/how-to/draganddrop/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/gantt/how-to/draganddrop/tagHelper
@@ -12,6 +12,7 @@
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/code-snippet/maps/bing/bingsublayer/tagHelper b/ej2-asp-core-mvc/code-snippet/maps/bing/bingsublayer/tagHelper
index e0d1536af6..3924f9a9c4 100644
--- a/ej2-asp-core-mvc/code-snippet/maps/bing/bingsublayer/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/maps/bing/bingsublayer/tagHelper
@@ -3,7 +3,7 @@
-
+
diff --git a/ej2-asp-core-mvc/code-snippet/maps/drilldown/tagHelper b/ej2-asp-core-mvc/code-snippet/maps/drilldown/tagHelper
index f93e9201f9..1ebb86f0d4 100644
--- a/ej2-asp-core-mvc/code-snippet/maps/drilldown/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/maps/drilldown/tagHelper
@@ -23,7 +23,7 @@
-
@@ -32,7 +32,7 @@
-
+
diff --git a/ej2-asp-core-mvc/code-snippet/maps/markers/marker-zoom/razor b/ej2-asp-core-mvc/code-snippet/maps/markers/marker-zoom/razor
index 64cc0b1f46..c9e3071605 100644
--- a/ej2-asp-core-mvc/code-snippet/maps/markers/marker-zoom/razor
+++ b/ej2-asp-core-mvc/code-snippet/maps/markers/marker-zoom/razor
@@ -12,7 +12,7 @@
{
Enable = true,
ShouldZoomInitially = true,
- HorizontalAlignment = Alignment.Near
+ ToolbarSettings = new {horizontalAlignment = "Near"}
}).Layers(new List
{
new Syncfusion.EJ2.Maps.MapsLayer
diff --git a/ej2-asp-core-mvc/code-snippet/maps/markers/marker-zoom/tagHelper b/ej2-asp-core-mvc/code-snippet/maps/markers/marker-zoom/tagHelper
index 38f2e00fc9..2c59597c42 100644
--- a/ej2-asp-core-mvc/code-snippet/maps/markers/marker-zoom/tagHelper
+++ b/ej2-asp-core-mvc/code-snippet/maps/markers/marker-zoom/tagHelper
@@ -9,13 +9,14 @@
{
new MapsMarker{Visible=true, DataSource=data}
};
+ var toolbarSettings = new { horizontalAlignment = "Near"};
}
@using Syncfusion.EJ2.Maps;
@using Syncfusion.EJ2;
-
+
diff --git a/ej2-asp-core-mvc/code-snippet/maps/print-export/export-tile/razor b/ej2-asp-core-mvc/code-snippet/maps/print-export/export-tile/razor
index 11d0c44d90..004a63027b 100644
--- a/ej2-asp-core-mvc/code-snippet/maps/print-export/export-tile/razor
+++ b/ej2-asp-core-mvc/code-snippet/maps/print-export/export-tile/razor
@@ -1,7 +1,7 @@
@using Syncfusion.EJ2;
@Html.EJS().Button("togglebtn").IconCss("e-icons e-play-icon").Content("Export").CssClass("e-flat").Render()
@Html.EJS().Maps("maps").AllowImageExport(true).Layers(l=> {
- l.LayerType(Syncfusion.EJ2.Maps.ShapeLayerType.OSM).Add();
+ l.UrlTemplate("https://tile.openstreetmap.org/level/tileX/tileY.png").Add();
}).Render()
`|
+| Bing Map Key | **Property:** *layers.key*
`@(Html.EJ().Map("container").Layers(layer =>{layer.Key("")}))` | There is no need to mention the key for the online maps. The key will be available in the URL that you mention in the `UrlTemplate` property. For Bing Maps, the key will be available in the URL that you mention in the `getBingUrlTemplate` method.
**Property:** *getBingUrlTemplate*
`@Html.EJS().Maps("container").Load("load").Layers(layer =>{layer.Add(); }).Render()`
``|
+| URL Template | **Property:** *layers.urltemplate*
`@(Html.EJ().Map("container").Layers(layer =>{layer.Urltemplate:'http://a.tile.openstreetmap.org/level/tileX/tileY.png' }))`| **Property:** *layers.urlTemplate*
`@Html.EJS().Maps("container").Load("load").Layers(layer =>{layer.UrlTemplate:'http://a.tile.openstreetmap.org/level/tileX/tileY.png' }).Render()`|
+| Shape Data | **Property:** *layers.shapeData*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeData(usmap).Add}))`| **Property:** *layers.shapeData*
`@Html.EJS().Maps("container").Load("load").Layers(layer =>{layer.ShapeData('usmap')}).Render()`|
+| Data Source | **Property:** *layers.dataSource*
`@(Html.EJ().Map("container").Layers(layer =>{layer.dataSource('PopulationData')}))`| **Property:** *layers.dataSource*
`@Html.EJS().Maps("container").Load("load").Layers(layer =>{layer.DataSource('')}).Render()`|
+| Query | Not Applicable | **Property:** *layers.query*
`@Html.EJS().Maps("container").Load("load").Layers(layer =>{layer.Query('')}).Render()`|
+| Shape Data Path | **Property:** *layers.shapeDataPath*
`@(Html.EJ().Map("container").Layers(layer =>{layer.shapeDataPath('population')}))`| **Property:** *layers.shapeDataPath*
`@Html.EJS().Maps("container").Load("load").Layers(layer =>{layer.ShapeDataPath('')}).Render()`|
+| Shape Property Path | **Property:** *layers.shapePropertyPath*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapePropertyPath('Continent')}))`| **Property:** *layers.shapePropertyPath*
`@Html.EJS().Maps("container").Load("load").Layers(layer =>{layer.shapePropertyPath('')}).Render()`|
+| Layer Animation | Not Applicable | **Property:** *layers.animationDuration*
`@Html.EJS().Maps("container").Load("load").Layers(layer =>{layer.ShapePropertyPath('')}).Render()`|
## Shape Customization
| **Behavior** | **API in Essential JS 1** | **API in Essential JS 2** |
| --- | --- | --- |
-| Shape Fill | **Property:** *layers.shapeSettings.fill*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(ss =>{ss.Fill('#626171')}})))`| **Property:** *layers.shapeSettings.fill*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{Fill="red" }).Render()`|
-| Shape Palette | **Property:** *layers.shapeSettings.colorPalette*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(ss =>{ss.ColorPalette(ColorPalette.CustomPalette)}})))`
`.CustomPalette(new List{"#E51400", "#A4C400", "#730202",})`| **Property:** *layers.shapeSettings.palette*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ColorMapping = ViewBag.colorMappings}).Render()`
`ViewBag.colorMappings = data;`|
+| Shape Fill | **Property:** *layers.shapeSettings.fill*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(ss =>{ss.Fill('#626171')}})))`| **Property:** *layers.shapeSettings.fill*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{Fill="red" }).Render()`|
+| Shape Palette | **Property:** *layers.shapeSettings.colorPalette*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(ss =>{ss.ColorPalette(ColorPalette.CustomPalette)}})))`
`.CustomPalette(new List{"#E51400", "#A4C400", "#730202",})`| **Property:** *layers.shapeSettings.palette*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ColorMapping = ViewBag.colorMappings}).Render()`
`ViewBag.colorMappings = data;`|
| Shape Point Radius | Not Applicable | **Property:** *layers.shapeSettings.circleRadius*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{circleRadius= 10 }).Render()`|
-| Shape Color Value Path | **Property:** *layers.shapeSettings.colorValuePath*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(ss =>{ss.ColorValuePath('')}})))`| **Property:** *layers.shapeSettings.colorValuePath*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ColorValuePath='' }).Render()`|
-| Shape Value Path | **Property:** *layers.shapeSettings.valuePath*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(ss =>{ss.ValuePath('')}})))`| **Property:** *layers.shapeSettings.valuePath*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ valuePath='population'}).Render()`|
+| Shape Color Value Path | **Property:** *layers.shapeSettings.colorValuePath*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(ss =>{ss.ColorValuePath('')}})))`| **Property:** *layers.shapeSettings.colorValuePath*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ColorValuePath='' }).Render()`|
+| Shape Value Path | **Property:** *layers.shapeSettings.valuePath*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(ss =>{ss.ValuePath('')}})))`| **Property:** *layers.shapeSettings.valuePath*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ valuePath='population'}).Render()`|
| Shape DashArray | Not Applicable | **Property:** *layers.shapeSettings.dashArray*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{DashArray='1,2'}).Render()`|
| Shape Opacity | Not Applicable | **Property:** *layers.shapeSettings.opacity*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ Opacity='0.5' }).Render()`|
-| Range Color Mapping | **Property:** *layers.shapeSettings.colorMappings.rangeColorMapping*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(ss =>{ss..RangeColorMappings(cm =>cm.From(10).To(100).color('blue')}})))`| **Property:** *layers.shapeSettings.colorMapping*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ColorMapping = ViewBag.ColorMapping }).Render()`
`ViewBag.ColorMapping = colorMapping;`
`colorMapping.Add(new MapsColorMapping{From =100, To=1000, Color = "#b3daff", Label = null})`|
-| Equal Color Mapping | **Property:** *layers.shapeSettings.colorMappings.equalColorMapping*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(ss =>{ss.EqualColorMappings(cm =>cm.value('').color('blue'))))`| **Property:** *layers.shapeSettings.colorMapping*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ColorMapping = ViewBag.ColorMapping }).Render()`
`ViewBag.ColorMapping = colorMapping;`
`colorMapping.Add(new MapsColorMapping{Value = "1", Color = "#b3daff", Label = null})`|
+| Range Color Mapping | **Property:** *layers.shapeSettings.colorMappings.rangeColorMapping*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(ss =>{ss..RangeColorMappings(cm =>cm.From(10).To(100).color('blue')}})))`| **Property:** *layers.shapeSettings.colorMapping*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ColorMapping = ViewBag.ColorMapping }).Render()`
`ViewBag.ColorMapping = colorMapping;`
`colorMapping.Add(new MapsColorMapping{From =100, To=1000, Color = "#b3daff", Label = null})`|
+| Equal Color Mapping | **Property:** *layers.shapeSettings.colorMappings.equalColorMapping*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(ss =>{ss.EqualColorMappings(cm =>cm.value('').color('blue'))))`| **Property:** *layers.shapeSettings.colorMapping*
`@Html.EJS().Maps("container").Load("load").ShapeSettings(new MapsShapeSettings{ColorMapping = ViewBag.ColorMapping }).Render()`
`ViewBag.ColorMapping = colorMapping;`
`colorMapping.Add(new MapsColorMapping{Value = "1", Color = "#b3daff", Label = null})`|
## Marker Customization
| **Behavior** | **API in Essential JS 1** | **API in Essential JS 2** |
| --- | --- | --- |
-| Marker Data Source | **Property:** *layers.markers*
`@(Html.EJ().Map("container").Layers(lr =>{lr.Markers(datasource)}))`
`ViewData["datasource"]= Syncfusion_LocationData.GetSyncfusionLocationData();`
`List syncfusionLocationData = new List{new LocationData {Name = "USA", Latitude =38.8833 , Longitude = -77.0167 }}`| **Property:** *layers.markerSettings.dataSource*
`@Html.EJS().Maps("container").Load("mapsLoad").Render()`
` function mapsLoad(args){ args.maps.layers[0].markerSettings=[{dataSource:[{latitude: 37.6276571, longitude: -122.4276688, name: 'San Bruno' },}]`|
-| Marker Template | **Property:** *layers.markerTemplate*
`@(Html.EJ().Map("container").Layers(lr =>{lr.Markers(datasource)..MarkerTemplate("template")}))`| **Property:** *layers.markerSettings.template*
`@Html.EJS().Maps("container").Load("mapsLoad").Render()`
`function mapsLoad(args){ args.maps.layers[0].markerSettings =[{template:'Template'}]`|
+| Marker Data Source | **Property:** *layers.markers*
`@(Html.EJ().Map("container").Layers(layer =>{layer.Markers(datasource)}))`
`ViewData["datasource"]= Syncfusion_LocationData.GetSyncfusionLocationData();`
`List syncfusionLocationData = new List{new LocationData {Name = "USA", Latitude =38.8833 , Longitude = -77.0167 }}`| **Property:** *layers.markerSettings.dataSource*
`@Html.EJS().Maps("container").Load("mapsLoad").Render()`
` function mapsLoad(args){ args.maps.layers[0].markerSettings=[{dataSource:[{latitude: 37.6276571, longitude: -122.4276688, name: 'San Bruno' },}]`|
+| Marker Template | **Property:** *layers.markerTemplate*
`@(Html.EJ().Map("container").Layers(layer =>{layer.Markers(datasource).MarkerTemplate("template")}))`| **Property:** *layers.markerSettings.template*
`@Html.EJS().Maps("container").Load("mapsLoad").Render()`
`function mapsLoad(args){ args.maps.layers[0].markerSettings =[{template:'Template'}]`|
| Marker Visible | Not Applicable | **Property:** *layers.markerSettings.visible*
`@Html.EJS().Maps("container").Load("mapsLoad").Render()`
`function mapsLoad(args){ args.maps.layers[0].markerSettings =[{visible:true}]`|
| Marker Fill | Not Applicable | **Property:** *layers.markerSettings.fill*
`@Html.EJS().Maps("container").Load("mapsLoad").Render()`
`function mapsLoad(args){ args.maps.layers[0].markerSettings =[{fill:'red'}]`|
| Marker Height | Not Applicable | **Property:** *layers.markerSettings.height*
`@Html.EJS().Maps("container").Load("mapsLoad").Render()`
`function mapsLoad(args){ args.maps.layers[0].markerSettings =[{height:20}]`|
@@ -89,31 +88,31 @@ This article describes the API migration process of Maps component from Essentia
| **Behavior** | **API in Essential JS 1** | **API in Essential JS 2** |
| --- | --- | --- |
-| Visible | **Property:** *layers.bubbleSettings.visible*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs.ShowBubble(true) }})))`| **Property:** *layers.bubbleSettings.visible*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{lr.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.Visible=true`|
-| ValuePath | **Property:** *layers.bubbleSettings.valuePath*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs.ValuePath('Population') }})))`| **Property:** *layers.bubbleSettings.valuePath*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{lr.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.ValuePath='Population'`|
-| MinValue | **Property:** *layers.bubbleSettings.minValue*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs.MinValue(20) }})))`| **Property:** *layers.bubbleSettings.minRadius*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{lr.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.MinRadius=10`|
-| MaxValue | **Property:** *layers.bubbleSettings.maxValue*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs.MaxValue(30) }})))`
-| **Property:** *layers.bubbleSettings.maxRadius*
`@Html.EJS().Maps("container").Layer(lr=>{lr.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();bubble.MaxRadius=20`|
-| Bubble Type | Not Applicable | **Property:** *layers.bubbleSettings.bubbleType*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{lr.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.BubbleType='Circle'`|
-| Color | **Property:** *layers.bubbleSettings.color*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs.Color('red') }})))`| **Property:** *layers.bubbleSettings.fill*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{lr.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.Fill='red'`|
-| Opacity | **Property:** *layers.bubbleSettings.bubbleOpacity*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs.BubbleOpacity(0.6) }})))`| **Property:** *layers.bubbleSettings.opacity*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.Opacity=0.5`|
-| Color Value Path | **Property:** *layers.bubbleSettings.colorValuePath*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs.ColorValuePath('')}})))`| **Property:** *layers.bubbleSettings.colorValuePath*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.ColorValuePath=''`|
-| Enable Tooltip | **Property:** *layers.bubbleSettings.showTooltip*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs.ShowTooltip(true) }})))`| **Property:** *layers.bubbleSettings.tooltipSettings.visible*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{lr.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.TooltipSetting.Visible=true`|
-| Tooltip Template | **Property:** *layers.bubbleSettings.tooltipTemplate*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs.TooltipTemplate('Template') }})))`| **Property:** *layers.bubbleSettings.tooltipSettings.template*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{lr.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.TooltipSetting.Template='template'`|
-| Bubble Selection | Not Applicable | **Property:** *layers.bubbleSettings.selectionSettings*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.SelectionSetting.Enable=true`|
-| Bubble Highlight | Not Applicable | **Property:** *layers.bubbleSettings.highlightSettings*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{lr.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.HighlightSetting.Enable=true`|
-| Range Color Mapping | **Property:** *layers.bubbleSettings.colorMappings.rangeColorMapping*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs. }})))`| **Property:** *layers.bubbleSettings.colorMapping*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{lr.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.`|
-| Equal Color Mapping | **Property:** *layers.bubbleSettings.colorMappings.equalColorMapping*
`@(Html.EJ().Map("container").Layers(lr =>{lr.BubbleSettings(bs =>{bs. }})))`| **Property:** *layers.bubbleSettings.colorMapping*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(lr=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.`|
+| Visible | **Property:** *layers.bubbleSettings.visible*
`@(Html.EJ().Map("container").Layers(layer=>{layer.BubbleSettings(bubble =>{bubble.ShowBubble(true) }})))`| **Property:** *layers.bubbleSettings.visible*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.Visible=true`|
+| ValuePath | **Property:** *layers.bubbleSettings.valuePath*
`@(Html.EJ().Map("container").Layers(layer =>{layer.BubbleSettings(bubble =>{bubble.ValuePath('Population') }})))`| **Property:** *layers.bubbleSettings.valuePath*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{l.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.ValuePath='Population'`|
+| MinValue | **Property:** *layers.bubbleSettings.minValue*
`@(Html.EJ().Map("container").Layers(layer =>{layer.BubbleSettings(bubble =>{bubble.MinValue(20) }})))`| **Property:** *layers.bubbleSettings.minRadius*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.MinRadius=10`|
+| MaxValue | **Property:** *layers.bubbleSettings.maxValue*
`@(Html.EJ().Map("container").Layers(layer =>{layer.BubbleSettings(bubble =>{bubble.MaxValue(30) }})))`
+| **Property:** *layers.bubbleSettings.maxRadius*
`@Html.EJS().Maps("container").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();bubble.MaxRadius=20`|
+| Bubble Type | Not Applicable | **Property:** *layers.bubbleSettings.bubbleType*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.BubbleType='Circle'`|
+| Color | **Property:** *layers.bubbleSettings.color*
`@(Html.EJ().Map("container").Layers(layer =>{layer.BubbleSettings(bubble =>{bubble.Color('red') }})))`| **Property:** *layers.bubbleSettings.fill*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.Fill='red'`|
+| Opacity | **Property:** *layers.bubbleSettings.bubbleOpacity*
`@(Html.EJ().Map("container").Layers(layer =>{layer.BubbleSettings(bubble =>{bubble.BubbleOpacity(0.6) }})))`| **Property:** *layers.bubbleSettings.opacity*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.Opacity=0.5`|
+| Color Value Path | **Property:** *layers.bubbleSettings.colorValuePath*
`@(Html.EJ().Map("container").Layers(layer =>{layer.BubbleSettings(bubble =>{bubble.ColorValuePath('')}})))`| **Property:** *layers.bubbleSettings.colorValuePath*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.ColorValuePath=''`|
+| Enable Tooltip | **Property:** *layers.bubbleSettings.showTooltip*
`@(Html.EJ().Map("container").Layers(layer =>{layer.BubbleSettings(bubble =>{bubble.ShowTooltip(true) }})))`| **Property:** *layers.bubbleSettings.tooltipSettings.visible*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.TooltipSetting.Visible=true`|
+| Tooltip Template | **Property:** *layers.bubbleSettings.tooltipTemplate*
`@(Html.EJ().Map("container").Layers(layer =>{layer.BubbleSettings(bubble =>{bubble.TooltipTemplate('Template') }})))`| **Property:** *layers.bubbleSettings.tooltipSettings.template*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.TooltipSetting.Template='template'`|
+| Bubble Selection | Not Applicable | **Property:** *layers.bubbleSettings.selectionSettings*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.SelectionSetting.Enable=true`|
+| Bubble Highlight | Not Applicable | **Property:** *layers.bubbleSettings.highlightSettings*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.HighlightSetting.Enable=true`|
+| Range Color Mapping | **Property:** *layers.bubbleSettings.colorMappings.rangeColorMapping*
`@(Html.EJ().Map("container").Layers(layer =>{layer.BubbleSettings(bubble =>{}})))`| **Property:** *layers.bubbleSettings.colorMapping*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.`|
+| Equal Color Mapping | **Property:** *layers.bubbleSettings.colorMappings.equalColorMapping*
`@(Html.EJ().Map("container").Layers(layer =>{layer.BubbleSettings(bubble =>{}})))`| **Property:** *layers.bubbleSettings.colorMapping*
`@Html.EJS().Maps("container").Load("mapsLoad").Layer(layer=>{layer.BubbleSettings(ViewBag.bubbleSettings)}).Render()`
`MapsBubble bubble = new MapsBubble();`
`bubble.`|
## DataLabel Customization
| **Behavior** | **API in Essential JS 1** | **API in Essential JS 2** |
| --- | --- | --- |
-| Visible | **Property:** *layers.labelSettings.showLabels*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LabelSettings(lb =>{lb.ShowLabels(true)})}))`| **Property:** *layers.dataLabelSettings.visible*
`@Html.EJS().Maps("container").Layer({lr.DataLabelSettings(new MapsDataLabelSettings{Visible = true})).Render()`|
-| Label Path | **Property:** *layers.labelSettings.labelPath*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LabelSettings(lb =>{lb.LabelPath("iso_3166_2")})}))`| **Property:** *layers.dataLabelSettings.labelPath*
`@Html.EJS().Maps("container").Layer({lr.DataLabelSettings(new MapsDataLabelSettings{LabelPath = "name",})).Render()`|
-| Enable Smart Label | **Property:** *layers.labelSettings.enableSmartLabel*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LabelSettings(lb =>{lb.EnableSmartLabel(true);})}))`| Not Applicable |
-| Smart Label Size | **Property:** *layers.labelSettings.smartLabelSize*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LabelSettings(lb =>{lb.SmartLabelSize(20)})}))`| Not Applicable |
-| Label Length | **Property:** *layers.labelSettings.labelLength*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LabelSettings(lb =>{lb.LabelLength(20) })}))`| Not Applicable |
+| Visible | **Property:** *layers.labelSettings.showLabels*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LabelSettings(lb =>{lb.ShowLabels(true)})}))`| **Property:** *layers.dataLabelSettings.visible*
`@Html.EJS().Maps("container").Layer({lr.DataLabelSettings(new MapsDataLabelSettings{Visible = true})).Render()`|
+| Label Path | **Property:** *layers.labelSettings.labelPath*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LabelSettings(lb =>{lb.LabelPath("iso_3166_2")})}))`| **Property:** *layers.dataLabelSettings.labelPath*
`@Html.EJS().Maps("container").Layer({lr.DataLabelSettings(new MapsDataLabelSettings{LabelPath = "name",})).Render()`|
+| Enable Smart Label | **Property:** *layers.labelSettings.enableSmartLabel*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LabelSettings(lb =>{lb.EnableSmartLabel(true);})}))`| Not Applicable |
+| Smart Label Size | **Property:** *layers.labelSettings.smartLabelSize*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LabelSettings(lb =>{lb.SmartLabelSize(20)})}))`| Not Applicable |
+| Label Length | **Property:** *layers.labelSettings.labelLength*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LabelSettings(lb =>{lb.LabelLength(20) })}))`| Not Applicable |
| Opacity | Not Applicable | **Property:** *layers.dataLabelSettings.opacity*
`@Html.EJS().Maps("container").Layer({lr.DataLabelSettings(new MapsDataLabelSettings{Opacity=0.5})).Render()`|
| Smart Label Mode | Not Applicable | **Property:** *layers.dataLabelSettings.smartLabelMode*
`@Html.EJS().Maps("container").Layer({lr.DataLabelSettings(new MapsDataLabelSettings{ SmartLabelMode = SmartLabelMode.Trim})).Render()`|
| InterSectAction | Not Applicable | **Property:** *layers.dataLabelSettings.intersectionAction*
`@Html.EJS().Maps("container").Layer({lr.DataLabelSettings(new MapsDataLabelSettings{ IntersectionAction = IntersectionAction.Trim})).Render()`|
@@ -123,25 +122,25 @@ This article describes the API migration process of Maps component from Essentia
| **Behavior** | **API in Essential JS 1** | **API in Essential JS 2** |
| --- | --- | --- |
-| Visible | **Property:** *layers.legendSettings.showLegend*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.ShowLegend(true})}))`| **Property:** *legendSettings.visible*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ Visible = true}).Render()`|
-| Toggle Visibility | **Property:** *layers.legendSettings.toggleVisibility*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.ToggleVisibility(true)})}))`| **Property:** *legendSettings.toggleVisibility*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ToggleVisibility = true}).Render()`|
-| Legend Location X | **Property:** *layers.legendSettings.positionX*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.PositionX(250)})}))`| **Property:** *legendSettings.location*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ }).Render()`|
-| Legend Location Y | **Property:** *layers.legendSettings.positionY*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.PositionY(250)})}))`| **Property:** *legendSettings.location*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ }).Render()`|
-| Legend Type | **Property:** *layers.legendSettings.type*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.Type:'Layers'})}))`| **Property:** *legendSettings.type*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ Type = Syncfusion.EJ2.Maps.LegendType.Layers}).Render()`|
-| Label Orientation | **Property:** *layers.legendSettings.labelOrientation*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.LabelOrientation('Vertical')})}))`| Not Applicable |
-| Legend Title | **Property:** *layers.legendSettings.title*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.Title:'Union territories of India'})}))`| **Property:** *legendSettings.title*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ Title= ""}).Render()`|
-| Legend Mode | **Property:** *layers.legendSettings.mode*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.Mode('Default')})}))`| **Property:** *legendSettings.mode*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ Mode = Syncfusion.EJ2.Maps.LegendMode.Default, }).Render()`|
-| Legend Position | **Property:** *layers.legendSettings.position*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.Position('TopLeft')})}))`| **Property:** *legendSettings.position*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{Position = Syncfusion.EJ2.Maps.LegendPosition.Bottom, }).Render()`|
-| Legend DockOnMap | **Property:** *layers.legendSettings.dockOnMap*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.DockOnMap(true)})}))`| Not Applicable |
-| Legend Alignment | **Property:** *layers.legendSettings.dockPosition*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.DockPosition('Right')})}))`| **Property:** *legendSettings.alignment*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{Alignment = Syncfusion.EJ2.Maps.Alignment.Center }).Render()`|
-| Legend Left Label | **Property:** *layers.legendSettings.leftLabel*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.LeftLabel('1000M')})}))`| Not Applicable |
-| Legend Right Label | **Property:** *layers.legendSettings.rightLabel*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls. RightLabel('3000M')})}))`| Not Applicable |
-| Legend Shape | **Property:** *layers.legendSettings.icon*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.Icon('Circle')})}))`| **Property:** *legendSettings.shape*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{Shape= Syncfusion.EJ2.Maps.LegendShape.Circle }).Render()`|
-| Legend Shape Height | **Property:** *layers.legendSettings.iconHeight*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.IconHeight(20)})}))`| **Property:** *legendSettings.shapeHeight*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ShapeHeight=20 }).Render()`|
-| Legend Shape Width | **Property:** *layers.legendSettings.iconWidth*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.IconWidth(20)})}))`| **Property:** *legendSettings.shapeWidth*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ShapeWidth=20 }).Render()`|
-| Height | **Property:** *layers.legendSettings.height*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.Height(50)})}))`| **Property:** *legendSettings.width*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{Height='50'}).Render()`|
-| Width | **Property:** *layers.legendSettings.width*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.Width(50)})}))`| **Property:** *legendSettings.width*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ Width='150' }).Render()`|
-| Show Labels | **Property:** *layers.legendSettings.showLabels*
`@(Html.EJ().Map("container").Layers(lr =>{lr.LegendSettings(ls =>{ls.ShowLabels(true)})}))`| Not Applicable |
+| Visible | **Property:** *layers.legendSettings.showLegend*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.ShowLegend(true})}))`| **Property:** *legendSettings.visible*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ Visible = true}).Render()`|
+| Toggle Visibility | **Property:** *layers.legendSettings.toggleVisibility*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.ToggleVisibility(true)})}))`| **Property:** *legendSettings.toggleVisibility*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ToggleVisibility = true}).Render()`|
+| Legend Location X | **Property:** *layers.legendSettings.positionX*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.PositionX(250)})}))`| **Property:** *legendSettings.location*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ }).Render()`|
+| Legend Location Y | **Property:** *layers.legendSettings.positionY*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.PositionY(250)})}))`| **Property:** *legendSettings.location*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ }).Render()`|
+| Legend Type | **Property:** *layers.legendSettings.type*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.Type:'Layers'})}))`| **Property:** *legendSettings.type*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ Type = Syncfusion.EJ2.Maps.LegendType.Layers}).Render()`|
+| Label Orientation | **Property:** *layers.legendSettings.labelOrientation*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.LabelOrientation('Vertical')})}))`| Not Applicable |
+| Legend Title | **Property:** *layers.legendSettings.title*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.Title:'Union territories of India'})}))`| **Property:** *legendSettings.title*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ Title= ""}).Render()`|
+| Legend Mode | **Property:** *layers.legendSettings.mode*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.Mode('Default')})}))`| **Property:** *legendSettings.mode*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ Mode = Syncfusion.EJ2.Maps.LegendMode.Default, }).Render()`|
+| Legend Position | **Property:** *layers.legendSettings.position*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.Position('TopLeft')})}))`| **Property:** *legendSettings.position*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{Position = Syncfusion.EJ2.Maps.LegendPosition.Bottom, }).Render()`|
+| Legend DockOnMap | **Property:** *layers.legendSettings.dockOnMap*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.DockOnMap(true)})}))`| Not Applicable |
+| Legend Alignment | **Property:** *layers.legendSettings.dockPosition*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.DockPosition('Right')})}))`| **Property:** *legendSettings.alignment*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{Alignment = Syncfusion.EJ2.Maps.Alignment.Center }).Render()`|
+| Legend Left Label | **Property:** *layers.legendSettings.leftLabel*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.LeftLabel('1000M')})}))`| Not Applicable |
+| Legend Right Label | **Property:** *layers.legendSettings.rightLabel*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls. RightLabel('3000M')})}))`| Not Applicable |
+| Legend Shape | **Property:** *layers.legendSettings.icon*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.Icon('Circle')})}))`| **Property:** *legendSettings.shape*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{Shape= Syncfusion.EJ2.Maps.LegendShape.Circle }).Render()`|
+| Legend Shape Height | **Property:** *layers.legendSettings.iconHeight*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.IconHeight(20)})}))`| **Property:** *legendSettings.shapeHeight*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ShapeHeight=20 }).Render()`|
+| Legend Shape Width | **Property:** *layers.legendSettings.iconWidth*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.IconWidth(20)})}))`| **Property:** *legendSettings.shapeWidth*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ShapeWidth=20 }).Render()`|
+| Height | **Property:** *layers.legendSettings.height*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.Height(50)})}))`| **Property:** *legendSettings.width*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{Height='50'}).Render()`|
+| Width | **Property:** *layers.legendSettings.width*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.Width(50)})}))`| **Property:** *legendSettings.width*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{ Width='150' }).Render()`|
+| Show Labels | **Property:** *layers.legendSettings.showLabels*
`@(Html.EJ().Map("container").Layers(layer =>{layer.LegendSettings(ls =>{ls.ShowLabels(true)})}))`| Not Applicable |
| Background | Not Applicable | **Property:** *legendSettings.background*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{Background='transparent' }).Render()`|
| Label Position | Not Applicable | **Property:** *legendSettings.labelPosition*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{LabelPosition = Syncfusion.EJ2.Maps.LabelPosition.After }).Render()`|
| Label Display Mode | Not Applicable | **Property:** *legendSettings.labelDisplayMode*
`@Html.EJS().Maps("container").LegendSettings(new Syncfusion.EJ2.Maps.MapsLegendSettings{LabelDisplayMode = Syncfusion.EJ2.Maps.LabelIntersectAction.Trim, }).Render()`|
@@ -166,27 +165,27 @@ This article describes the API migration process of Maps component from Essentia
| Pinch Zoom | Not Applicable | **Property:** *zoomSettings.pinchZooming*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{PinchZooming=true}).Render()`|
| Single Click Zoom | **Property:** *zoomSettings.enableZoomOnSelection*
`@(Html.EJ().Map("container").ZoomSettings(zm=>{zm.EnableZoomOnSelection(true)}))`| **Property:** *zoomSettings.zoomOnClick*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{ZoomOnClick=true}).Render()`|
| Zoom Factor | **Property:** *zoomSettings.factor*
`@(Html.EJ().Map("container").ZoomSettings(zm=>{zm.Factor(2)}))`| **Property:** *zoomSettings.zoomFactor*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{ ZoomFactor=2,}).Render()`|
-| Toolbars | Not Applicable | **Property:** *zoomSettings.toolbars*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{Toolbars =['ZoomIn']}).Render()`|
-| Toolbar Orientation | Not Applicable | **Property:** *zoomSettings.toolBarOrientation*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{ToolBarOrientation= Syncfusion.EJ2.Maps.Orientation.Horizontal}).Render()`|
-| Toolbar Vertical Alignment | Not Applicable | **Property:** *zoomSettings.verticalAlignment*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{VerticalAlignment = Syncfusion.EJ2.Maps.Alignment.Center}).Render()`|
-| Toolbar Horizontal Alignment | Not Applicable | **Property:** *zoomSettings.horizontalAlignment*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{HorizontalAlignment=Syncfusion.EJ2.Maps.Alignment.Center}).Render()`|
-| Toolbar Highlight Color | Not Applicable | **Property:** *zoomSettings.highlightColor*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{HighlightColor="#e61576"}).Render()`|
-| Toolbar Selection Color | Not Applicable | **Property:** *zoomSettings.selectionColor*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{SelectionColor="#e61576"}).Render()`|
-| Toolbar Fill Color | Not Applicable | **Property:** *zoomSettings.color*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{Color="#e61576"}).Render()`|
+| Toolbars | Not Applicable | **Property:** *zoomSettings.toolbarSettings.buttonSettings.toolbarItems*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{ToolbarSettings = new { buttonSettings = new { toolbarItems = new string[] { "ZoomIn" } } }}).Render()`|
+| Toolbar Orientation | Not Applicable | **Property:** *zoomSettings.toolbarSettings.orientation*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{ToolbarSettings = new {orientation = "Horizontal"}}).Render()`|
+| Toolbar Vertical Alignment | Not Applicable | **Property:** *zoomSettings.toolbarSettings.verticalAlignment*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{ToolbarSettings = new {verticalAlignment = "Center"}}).Render()`|
+| Toolbar Horizontal Alignment | Not Applicable | **Property:** *zoomSettings.toolbarSettings.horizontalAlignment*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{ToolbarSettings = new {horizontalAlignment = "Center"}}).Render()`|
+| Toolbar Highlight Color | Not Applicable | **Property:** *zoomSettings.toolbarSettings.buttonSettings.highlightColor*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{ToolbarSettings = new { buttonSettings = new { highlightColor = "#e61576" } }}).Render()`|
+| Toolbar Selection Color | Not Applicable | **Property:** *zoomSettings.toolbarSettings.buttonSettings.selectionColor*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{ToolbarSettings = new { buttonSettings = new { selectionColor = "#e61576" } }}).Render()`|
+| Toolbar Fill Color | Not Applicable | **Property:** *zoomSettings.toolbarSettings.buttonSettings.color*
`@Html.EJS().Maps("container").ZoomSettings(new Syncfusion.EJ2.Maps.MapsZoomSettings{ToolbarSettings = new { buttonSettings = new { color = "#e61576"}).Render()`|
## Highlight And Selection Customization
| **Behavior** | **API in Essential JS 1** | **API in Essential JS 2** |
| --- | --- | --- |
-| Highlight Fill | **Property:** *layers.shapeSettings.highlightColor*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(sp =>{sp.HighlightColor('green') })}))`| **Property:** *fill*
l`@Html.EJS().Maps("container").Layers(new List{HighlightSettings = new MapsHighlightSettings{Fill='red'}}).Render()`|
-| Enable Highlight | **Property:** *layers.enableMouseHover*
`@(Html.EJ().Map("container").Layers(lr =>{lr.EnableMouseHover(true)}))`| **Property:** *enable*
`@Html.EJS().Maps("container").Layers(new List{HighlightSettings = new MapsHighlightSettings{Enable=true}}).Render()`|
-| Highlight Border Color | **Property:** *layers.shapeSettings.highlightStroke*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(sp =>{sp.HighlightStroke('red')})}))`| **Property:** *layers.highlightSettings.border.color*
`@Html.EJS().Maps("container").Layers(new List{HighlightSettings = new MapsHighlightSettings{Border={Color='green'}}}).Render()`|
-| Highlight Border Width | **Property:** *layers.shapeSettings.highlightBorderWidth*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(sp =>{sp.HighlightBorderWidth=('2')})}))`| **Property:** *layers.highlightSettings.border.width*
`@Html.EJS().Maps("container").Layers(new List{HighlightSettings = new MapsHighlightSettings{Border={Width=2}}}).Render()`|
+| Highlight Fill | **Property:** *layers.shapeSettings.highlightColor*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(shape =>{shape.HighlightColor('green') })}))`| **Property:** *fill*
l`@Html.EJS().Maps("container").Layers(new List{HighlightSettings = new MapsHighlightSettings{Fill='red'}}).Render()`|
+| Enable Highlight | **Property:** *layers.enableMouseHover*
`@(Html.EJ().Map("container").Layers(layer =>{layer.EnableMouseHover(true)}))`| **Property:** *enable*
`@Html.EJS().Maps("container").Layers(new List{HighlightSettings = new MapsHighlightSettings{Enable=true}}).Render()`|
+| Highlight Border Color | **Property:** *layers.shapeSettings.highlightStroke*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(shape =>{shape.HighlightStroke('red')})}))`| **Property:** *layers.highlightSettings.border.color*
`@Html.EJS().Maps("container").Layers(new List{HighlightSettings = new MapsHighlightSettings{Border={Color='green'}}}).Render()`|
+| Highlight Border Width | **Property:** *layers.shapeSettings.highlightBorderWidth*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(shape =>{shape.HighlightBorderWidth=('2')})}))`| **Property:** *layers.highlightSettings.border.width*
`@Html.EJS().Maps("container").Layers(new List{HighlightSettings = new MapsHighlightSettings{Border={Width=2}}}).Render()`|
| Highlight Opacity | Not Applicable | **Property:** layers.*layers.highlightSettings.opacity*
`@Html.EJS().Maps("container").Layers(new List{HighlightSettings = new MapsHighlightSettings{Opacity=0.3}}).Render()`|
-| Selection Fill | **Property:** *layers.shapeSettings.selectionColor*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(sp =>{sp.SelectionColor('blue')})}))`| **Property:** *layers.selectionSettings.fill*
`@Html.EJS().Maps("container").Layers(new List{SelectionSettings = new MapsSelectionSettings{Fill='red'}}).Render()`|
-| Selection Enable | **Property:** *layers.enableSelection*
`@(Html.EJ().Map("container").Layers(lr =>{lr.EnableSelection(true)}))`| **Property:** *layers.selectionSettings.enable*
`@Html.EJS().Maps("container").Layers(new List{SelectionSettings = new MapsSelectionSettings{Enable= true}}).Render()`|
-| Selection Border Width | **Property:** *layers.selectionSettings.selectionStrokeWidth*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(sp =>{sp.SelectionStrokeWidth(2)})}))`| **Property:** *layers.selectionSettings.border.width*
`@Html.EJS().Maps("container").Layers(new List{SelectionSettings = new MapsSelectionSettings{Border={Width=2}}}).Render()`|
-| Selection Border Color | **Property:** *layers.selectionSettings.selectionStroke*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShapeSettings(sp =>{sp.SelectionStroke("white")})}))`| **Property:** *layers.selectionSettings.border.color*
`@Html.EJS().Maps("container").Layers(new List{SelectionSettings = new MapsSelectionSettings{Border={Color='red'}}}).Render()`|
+| Selection Fill | **Property:** *layers.shapeSettings.selectionColor*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(shape =>{shape.SelectionColor('blue')})}))`| **Property:** *layers.selectionSettings.fill*
`@Html.EJS().Maps("container").Layers(new List{SelectionSettings = new MapsSelectionSettings{Fill='red'}}).Render()`|
+| Selection Enable | **Property:** *layers.enableSelection*
`@(Html.EJ().Map("container").Layers(layer =>{layer.EnableSelection(true)}))`| **Property:** *layers.selectionSettings.enable*
`@Html.EJS().Maps("container").Layers(new List{SelectionSettings = new MapsSelectionSettings{Enable= true}}).Render()`|
+| Selection Border Width | **Property:** *layers.selectionSettings.selectionStrokeWidth*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(shape =>{shape.SelectionStrokeWidth(2)})}))`| **Property:** *layers.selectionSettings.border.width*
`@Html.EJS().Maps("container").Layers(new List{SelectionSettings = new MapsSelectionSettings{Border={Width=2}}}).Render()`|
+| Selection Border Color | **Property:** *layers.selectionSettings.selectionStroke*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShapeSettings(shape =>{shape.SelectionStroke("white")})}))`| **Property:** *layers.selectionSettings.border.color*
`@Html.EJS().Maps("container").Layers(new List{SelectionSettings = new MapsSelectionSettings{Border={Color='red'}}}).Render()`|
| Selection Opacity | Not Applicable | **Property:** *layers.selectionSettings.opacity*
`@Html.EJS().Maps("container").Layers(new List{SelectionSettings = new MapsSelectionSettings{Opacity=0.3}}).Render()`|
## Navigation Line Customization
@@ -210,8 +209,8 @@ This article describes the API migration process of Maps component from Essentia
| **Behavior** | **API in Essential JS 1** | **API in Essential JS 2** |
| --- | --- | --- |
-| Tooltip Enable | **Property:** *layers.showTooltip*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ShowTooltip(true)}))` | **Property:** *layers.tooltipSettings.visible*
`@Html.EJS().Maps("container").Layers(new List{ new Syncfusion.EJ2.Maps.MapsLayer{ TooltipSettings = new MapsTooltipSettings{Visible= true }}}).Render()`|
-| Tooltip Template | **Property:** *layers.tooltipTemplate*
`@(Html.EJ().Map("container").Layers(lr =>{lr.ToolTipTemplate('myTooltip').Add}))`| **Property:** *layers.tooltipSettings.visible*
`@Html.EJS().Maps("container").Layers(new List{ new Syncfusion.EJ2.Maps.MapsLayer{ TooltipSettings = new MapsTooltipSettings{Template='tremplate'}}}).Render()`|
+| Tooltip Enable | **Property:** *layers.showTooltip*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ShowTooltip(true)}))` | **Property:** *layers.tooltipSettings.visible*
`@Html.EJS().Maps("container").Layers(new List{ new Syncfusion.EJ2.Maps.MapsLayer{ TooltipSettings = new MapsTooltipSettings{Visible= true }}}).Render()`|
+| Tooltip Template | **Property:** *layers.tooltipTemplate*
`@(Html.EJ().Map("container").Layers(layer =>{layer.ToolTipTemplate('myTooltip').Add}))`| **Property:** *layers.tooltipSettings.visible*
`@Html.EJS().Maps("container").Layers(new List{ new Syncfusion.EJ2.Maps.MapsLayer{ TooltipSettings = new MapsTooltipSettings{Template='template'}}}).Render()`|
| Value Path | Not Applicable | **Property:** *layers.tooltipSettings.valuePath*
`@Html.EJS().Maps("container").Layers(new List{ new Syncfusion.EJ2.Maps.MapsLayer{ TooltipSettings = new MapsTooltipSettings{ValuePath = "State"}}}).Render()`|
| Format | Not Applicable | **Property:** *layers.tooltipSettings.format*
`@Html.EJS().Maps("container").Layers(new List{ new Syncfusion.EJ2.Maps.MapsLayer{ TooltipSettings = new MapsTooltipSettings{Format='${State}}}}).Render()`|
| Border Color | Not Applicable | **Property:** *layers.tooltipSettings.border.color*
`@Html.EJS().Maps("container").Layers(new List{ new Syncfusion.EJ2.Maps.MapsLayer{ TooltipSettings = new MapsTooltipSettings{Border={ color:'red' } }}}).Render()`|
@@ -238,11 +237,11 @@ This article describes the API migration process of Maps component from Essentia
| Enable Group Separator | **Property:** *enableGroupSeparator*
`@Html.EJ().Maps("container").UseGroupingSeparator(true))`| **Property:** *useGroupingSeparator*
`@Html.EJS().Maps("container").UseGroupingSeparator(true).Render()`|
| Base Layer Index | **Property:** *baseMapIndex*
`@Html.EJ().Maps("container").BaseLayerIndex(1))`| **Property:** *baseLayerIndex*
`@Html.EJS().Maps("container").BaseLayerIndex(1).Render()`|
| locale | **Property:** *locale*
`@(Html.EJ().Map("container").Locale('en-us')` | Not Applicable |
-| Responsive | **Property:** *isResponsive*
`@(Html.EJ().Map("container").IsResponsivet(true)`| Not Applicable |
+| Responsive | **Property:** *isResponsive*
`@(Html.EJ().Map("container").IsResponsive(true)`| Not Applicable |
| Enable Pan | **Property:** *enablePan*
`@(Html.EJ().Map("container").EnablePan(true)`| Not Applicable |
| Enable Navigation | **Property:** *navigationControl.enableNavigation*
`@(Html.EJ().Map("container").NavigationControl(new{ enableNavigation=true })`| Not Applicable |
| Navigation Orientation | **Property:** *navigationControl.orientation*
`@(Html.EJ().Map("container").NavigationControl(new{ orientation='vertical' })`| Not Applicable |
-| Navigation Dock Position | **Property:** *navigationControl.dockPosition*
`@(Html.EJ().Map("container").NavigationControl(new{ dockPosition='centerleft' })`| Not Applicable |
+| Navigation Dock Position | **Property:** *navigationControl.dockPosition*
`@(Html.EJ().Map("container").NavigationControl(new{ dockPosition='centerLeft' })`| Not Applicable |
| Navigation Absolute Position | **Property:** *navigationControl.absolutePosition*
`@(Html.EJ().Map("container").NavigationControl(new{ absolutePosition={ x: 100, y : 100 } })`| Not Applicable |
| Dragging Selection | **Property:** *draggingOnSelection*
`@(Html.EJ().Map("container").DraggingOnSelection(true)`| Not Applicable |
| Resize | **Property:** *enableResize*
`@(Html.EJ().Map("container").EnableResize(true))`| Not Applicable |
@@ -283,4 +282,4 @@ This article describes the API migration process of Maps component from Essentia
| Marker Rendering | Not Applicable | **Property:** *markerRendering*
`@Html.EJS().Maps("container").MarkerRendering("markerRendering").Render()`
`function markerRendering(args){}`|
| Bubble Mouse Move | Not Applicable | **Property:** *bubbleMouseMove*
`@Html.EJS().Maps("container").BubbleMouseMove("bubbleMouseMove").Render()`
`function bubbleMouseMove(args){}`|
| Bubble Mouse Move | Not Applicable | **Property:** *annotationRendering*
`@Html.EJS().Maps("container").AnnotationRendering("annotationRendering").Render()`
`function annotationRendering(args){}`|
-| Animation Complete | Not Applicable | **Property:** *animationComplete*
`@Html.EJS().Maps("container").AnimationComplete("animationComplete").Render()`
`function animationComplete(args){}`|
\ No newline at end of file
+| Animation Complete | Not Applicable | **Property:** *animationComplete*
`@Html.EJS().Maps("container").AnimationComplete("animationComplete").Render()`
`function animationComplete(args){}`|
diff --git a/ej2-asp-core-mvc/maps/EJ2_ASP.NETCORE/ej1-api-migration.md b/ej2-asp-core-mvc/maps/EJ2_ASP.NETCORE/ej1-api-migration.md
index 13a907e340..3c9a423379 100644
--- a/ej2-asp-core-mvc/maps/EJ2_ASP.NETCORE/ej1-api-migration.md
+++ b/ej2-asp-core-mvc/maps/EJ2_ASP.NETCORE/ej1-api-migration.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Ej1 Api Migration in ##Platform_Name## Maps Component
+title: Ej1 Api Migration in Syncfusion ##Platform_Name## Maps Component
description: Learn here all about Ej1 Api Migration in Syncfusion ##Platform_Name## Maps component of Syncfusion Essential JS 2 and more.
platform: ej2-asp-core-mvc
control: Ej1 Api Migration
@@ -43,23 +43,23 @@ This article describes the API migration process of Maps component from Essentia
| Pinch Zoom | Not Applicable | **Property:** *zoomSettings.pinchZooming*
``|
| Single Click Zoom | **Property:** *zoomSettings.enableZoomOnSelection*
`` | **Property:** *zoomSettings.zoomOnClick*
``|
| Zoom Factor | **Property:** *zoomSettings.factor*
`` | **Property:** *zoomSettings.zoomFactor*
``|
-| Toolbars | Not Applicable | **Property:** *zoomSettings.toolbars*
var toolBarCollection = new[] { "", "", "" };
``
``
``
``|
-| Toolbar Orientation | Not Applicable | **Property:** *zoomSettings.toolBarOrientation*
``|
-| Toolbar Vertical Alignment | Not Applicable | **Property:** *zoomSettings.verticalAlignment*
``|
-| Toolbar Horizontal Alignment | Not Applicable | **Property:** *zoomSettings.horizontalAlignment*
``|
-| Toolbar Highlight Color | Not Applicable | **Property:** *zoomSettings.highlightColor*
``|
-| Toolbar Selection Color | Not Applicable | **Property:** *zoomSettings.selectionColor*
``|
-| Toolbar Fill Color | Not Applicable | **Property:** *zoomSettings.color*
``|
+| Toolbars | Not Applicable | **Property:** *zoomSettings.toolbarSettings.buttonSettings.toolbarItems*
var toolbarSettings = new { buttonSettings = new { toolbarItems = new string[] { "Zoom", "ZoomIn", "Pan", "Reset" } } };
``
``
``
``|
+| Toolbar Orientation | Not Applicable | **Property:** *zoomSettings.toolbarSettings.orientation*
var toolbarSettings = new { orientation = "Horizontal" };
``|
+| Toolbar Vertical Alignment | Not Applicable | **Property:** *zoomSettings.toolbarSettings.verticalAlignment*
var toolbarSettings = new { verticalAlignment = "Center" };
``|
+| Toolbar Horizontal Alignment | Not Applicable | **Property:** *zoomSettings.toolbarSettings.horizontalAlignment*
var toolbarSettings = new { horizontalAlignment = "Center" };
``|
+| Toolbar Highlight Color | Not Applicable | **Property:** *zoomSettings.toolbarSettings.buttonSettings.highlightColor*
var toolbarSettings = new { buttonSettings = new { highlightColor = "#e61576" } };
``|
+| Toolbar Selection Color | Not Applicable | **Property:** *zoomSettings.toolbarSettings.buttonSettings.selectionColor*
var toolbarSettings = new { buttonSettings = new { selectionColor = "#e61576" } };
``|
+| Toolbar Fill Color | Not Applicable | **Property:** *zoomSettings.toolbarSettings.buttonSettings.color*
var toolbarSettings = new { buttonSettings = new { color = "#e61576" } };
``|
## Layer Customization
| **Behavior** | **API in Essential JS 1** | **API in Essential JS 2** |
| --- | --- | --- |
| Type | Not Applicable | **Property:** *layers.type*
` `|
-| Layer Type | **Property:** *layers.layerType*
`` | **Property:** *layers.layerType*
` `|
+| Layer Type | **Property:** *layers.layerType*
`` | To render shape maps, there is no need to mention the layer type. You can use the `shapeData` property alone.
**Property:** *layers.shapeData*
` `
To render online maps, there is no need to mention the layer type. You can use the `urlTemplate` property alone.
**Property:** *layers.urlTemplate*
` `|
| Visible | Not Applicable | **Property:** *layers.visible*
` `|
-| Bing Map Type | **Property:** *layers.bingMapType*
`` | **Property:** *layers.bingMapType*
` `|
-| Bing Map Key | **Property:** *layers.key*
`` | **Property:** *layers.key*
` `|
+| Bing Map Type | **Property:** *layers.bingMapType*
`` | There is no need to mention the type of Bing Maps. The type of Bing Maps will be available in the URL that you mention in the `getBingUrlTemplate` method.
**Property:** *getBingUrlTemplate*
` `
``|
+| Bing Map Key | **Property:** *layers.key*
`` | There is no need to mention the key for the online maps. The key will be available in the URL that you mention in the `urlTemplate` property. For Bing Maps, the key will be available in the URL that you mention in the `getBingUrlTemplate` method.
**Property:** *getBingUrlTemplate*
` `
``|
| URL Template | **Property:** *layers.urltemplate*
`` | **Property:** *layers.urlTemplate*
` `|
| Shape Data | **Property:** *layers.shapeData*
`` | **Property:** *layers.shapeData*
` `|
| Data Source | **Property:** *layers.dataSource*
`` | **Property:** *layers.dataSource*
` `|
@@ -277,4 +277,4 @@ This article describes the API migration process of Maps component from Essentia
| Marker Rendering | Not Applicable | **Property:** *markerRendering*
``
`function markerRendering(args){}` |
| Bubble Mouse Move | Not Applicable | **Property:** *bubbleMouseMove*
``
`function bubbleMouseMove(args){}` |
| Bubble Mouse Move | Not Applicable | **Property:** *annotationRendering*
``
`function annotationRendering(args){}` |
-| Animation Complete | Not Applicable | **Property:** *animationComplete*
``
`function animationComplete(args){}` |
\ No newline at end of file
+| Animation Complete | Not Applicable | **Property:** *animationComplete*
``
`function animationComplete(args){}` |
diff --git a/ej2-asp-core-mvc/maps/accessibility.md b/ej2-asp-core-mvc/maps/accessibility.md
index 1a025bba76..9afb0ac757 100644
--- a/ej2-asp-core-mvc/maps/accessibility.md
+++ b/ej2-asp-core-mvc/maps/accessibility.md
@@ -19,7 +19,7 @@ The accessibility compliance for the Maps component is outlined below.
| [WCAG 2.2 Support](../common/accessibility) |
|
| [Section 508 Support](../common/accessibility) |
|
| [Screen Reader Support](../common/accessibility) |
|
-| [Right-To-Left Support](../common/accessibility) |
|
+| [Right-To-Left Support](../common/accessibility) | Not Applicable |
| [Color Contrast](../common/accessibility) |
|
| [Mobile Device Support](../common/accessibility) |
|
| [Keyboard Navigation Support](../common/accessibility) |
|
diff --git a/ej2-asp-core-mvc/maps/user-interactions.md b/ej2-asp-core-mvc/maps/user-interactions.md
index 52b39cd74c..dd8405fbaa 100644
--- a/ej2-asp-core-mvc/maps/user-interactions.md
+++ b/ej2-asp-core-mvc/maps/user-interactions.md
@@ -8,7 +8,7 @@ publishingplatform: ##Platform_Name##
documentation: ug
---
-# User Interactions
+# User Interactions in ##Platform_Name## Maps Component
## Zooming
@@ -930,4 +930,33 @@ The HTML element can be rendered in the tooltip of the Maps using the `Template`
-
\ No newline at end of file
+
+
+### Changing duration in mobile devices
+
+{% if page.publishingplatform == "aspnet-core" %}
+
+To change the duration of the tooltips and tooltip templates in mobile devices, you can use the [Duration](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Maps.MapsTooltipSettings.html#Syncfusion_EJ2_Maps_MapsTooltipSettings_Duration) property in [MapsTooltipSettings](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Maps.MapsTooltipSettings.html). By default, this property is set to **2000** milliseconds. Setting the value to **0** will keep the tooltip visible indefinitely. If it is greater than **0**, the tooltip will be removed after the specified time.
+
+{% tabs %}
+{% highlight cshtml tabtitle="CSHTML" %}
+{% include code-snippet/maps/user-interactions/tooltip-duration/tagHelper %}
+{% endhighlight %}
+{% highlight c# tabtitle="Tooltip-duration.cs" %}
+{% include code-snippet/maps/user-interactions/tooltip-duration/tooltip-duration.cs %}
+{% endhighlight %}
+{% endtabs %}
+
+{% elsif page.publishingplatform == "aspnet-mvc" %}
+
+To change the duration of the tooltips and tooltip templates in mobile devices, you can use the [Duration](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Maps.MapsTooltipSettings.html#Syncfusion_EJ2_Maps_MapsTooltipSettings_Duration) property in [MapsTooltipSettings](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Maps.MapsTooltipSettings.html). By default, this property is set to **2000** milliseconds. Setting the value to **0** will keep the tooltip visible indefinitely. If it is greater than **0**, the tooltip will be removed after the specified time.
+
+{% tabs %}
+{% highlight razor tabtitle="CSHTML" %}
+{% include code-snippet/maps/user-interactions/tooltip-duration/razor %}
+{% endhighlight %}
+{% highlight c# tabtitle="Tooltip-duration.cs" %}
+{% include code-snippet/maps/user-interactions/tooltip-duration/tooltip-duration.cs %}
+{% endhighlight %}
+{% endtabs %}
+{% endif %}
diff --git a/ej2-asp-core-mvc/treemap/accessibility.md b/ej2-asp-core-mvc/treemap/accessibility.md
index 55e7e3ea7c..e61394d5db 100644
--- a/ej2-asp-core-mvc/treemap/accessibility.md
+++ b/ej2-asp-core-mvc/treemap/accessibility.md
@@ -23,7 +23,7 @@ The accessibility compliance for the TreeMap component is outlined below.
| [Right-To-Left Support](../common/accessibility) |
|
| [Color Contrast](../common/accessibility) |
|
| [Mobile Device Support](../common/accessibility) |
|
-| [Keyboard Navigation Support](../common/accessibility) |
|
+| [Keyboard Navigation Support](../common/accessibility) | Not Applicable |
| [Accessibility Checker Validation](../common/accessibility) |
|
| [Axe-core Accessibility Validation](../common/accessibility) |
|