Skip to content

Commit 16cea9d

Browse files
Merge pull request #28 from mohandeblaze/patch-1
fix Heatmap and Gannt samples
2 parents 7e92c9e + c2fc5a7 commit 16cea9d

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

ej2-blazor-samples/Pages/Gantt/SampleList.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ internal partial class SampleConfig
1818
FileName = "DefaultFunctionalities.razor",
1919
Type = SampleType.New
2020
},
21-
new Sample
22-
{
23-
Name = "Editing",
24-
Category = "Gantt",
25-
Directory = "Gantt/Editing",
26-
Url = "Gantt/Editing",
27-
FileName = "Editing.razor",
28-
Type = SampleType.New
29-
},
21+
//new Sample
22+
//{
23+
// Name = "Editing",
24+
// Category = "Gantt",
25+
// Directory = "Gantt/Editing",
26+
// Url = "Gantt/Editing",
27+
// FileName = "Editing.razor",
28+
// Type = SampleType.New
29+
//},
3030
new Sample
3131
{
3232
Name = "Baseline",

ej2-blazor-samples/Pages/HeatMapChart/HeatMapChart/DefaultFunctionalities.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<div class="control-section">
3535
<div class="row">
3636
<div class="col-md-12">
37-
<Ejsheatmap id="Container" DataSource="@heatmapData" @ref="heatmap" XAxis="@xAxis" YAxis="@yAxis">
37+
<Ejsheatmap id="Container" DataSource="@heatmapData" @ref="heatmap" XAxis="@xAxis" YAxis="@yAxis" ShowTooltip="false">
3838
<HeatMapTitle Text="Sales Revenue per Employee (in 1000 US$)"></HeatMapTitle>
3939
</Ejsheatmap>
4040
</div>
@@ -58,4 +58,4 @@
5858
{
5959
heatmapData = this.heatmap.DataSource = HeatMapData.GetDefaultData();
6060
}
61-
}
61+
}

ej2-blazor-samples/Pages/HeatMapChart/HeatMapChart/Emptypoints.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<div class="control-section">
3838
<div class="row">
3939
<div class="col-md-12">
40-
<Ejsheatmap id="Container" DataSource="@heatmapData" @ref="heatmap" XAxis="@xAxis" YAxis="@yAxis">
40+
<Ejsheatmap id="Container" DataSource="@heatmapData" @ref="heatmap" XAxis="@xAxis" YAxis="@yAxis" ShowTooltip="false">
4141
<HeatMapTitle Text="Deffective Count per 1000 Products from a Manufacturing Unit"></HeatMapTitle>
4242
<HeatMapPaletteSettings Type="@Syncfusion.EJ2.RazorComponents.HeatMap.PaletteType.Gradient">
4343
<HeatMapPalettes>

0 commit comments

Comments
 (0)