Skip to content

Commit 0ecdca1

Browse files
authored
Merge pull request #237 from apexcharts/prefomance-issue
Updated performance sample
2 parents 672a05e + b96d6b4 commit 0ecdca1

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

docs/BlazorApexCharts.Docs.Server/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"BlazorApexCharts.Docs.Server": {
1212
"commandName": "Project",
1313
"launchBrowser": true,
14+
"launchUrl": "features/performance",
1415
"environmentVariables": {
1516
"ASPNETCORE_ENVIRONMENT": "Development"
1617
},

docs/BlazorApexCharts.Docs/BlazorApexCharts.Docs.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
<TargetFramework>net6.0</TargetFramework>
55
</PropertyGroup>
66

7+
<ItemGroup>
8+
<Compile Remove="Components\Issues\**" />
9+
<Content Remove="Components\Issues\**" />
10+
<EmbeddedResource Remove="Components\Issues\**" />
11+
<None Remove="Components\Issues\**" />
12+
</ItemGroup>
13+
714

815
<ItemGroup>
916
<SupportedPlatform Include="browser" />
@@ -21,8 +28,4 @@
2128
<ProjectReference Include="..\..\src\Blazor-ApexCharts\Blazor-ApexCharts.csproj" />
2229
</ItemGroup>
2330

24-
<ItemGroup>
25-
<Folder Include="Components\Issues\" />
26-
</ItemGroup>
27-
2831
</Project>

docs/BlazorApexCharts.Docs/Components/Features/Performance/Basic.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ else
2929

3030
@code {
3131
private ApexChart<TimeSeries> chart;
32-
private List<int> points = new List<int> { 100, 1000, 5000, 10000, 15000, 20000 };
32+
private List<int> points = new List<int> {0, 100, 1000, 5000, 10000, 15000, 20000 };
3333
private int pointsToLoad = 100;
3434
private List<TimeSeries> timeSeries = new TimeSeriesGenerator(25000).TimeSeries;
3535
private string message;

0 commit comments

Comments
 (0)