Skip to content

Commit

Permalink
Merge pull request #3 from Backiaraj/chart
Browse files Browse the repository at this point in the history
update project and readme content
  • Loading branch information
rajendranr-5483 committed Oct 2, 2023
2 parents 1c1eb55 + 907e95b commit 009d5aa
Show file tree
Hide file tree
Showing 35 changed files with 1,458 additions and 1,291 deletions.
22 changes: 12 additions & 10 deletions App.razor
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
16 changes: 0 additions & 16 deletions Blazor Charts.csproj

This file was deleted.

13 changes: 13 additions & 0 deletions Data/WeatherForecast.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
namespace PolarAndRadarChart.Data
{
public class WeatherForecast
{
public DateOnly Date { get; set; }

public int TemperatureC { get; set; }

public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);

public string? Summary { get; set; }
}
}
20 changes: 20 additions & 0 deletions Data/WeatherForecastService.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
namespace PolarAndRadarChart.Data
{
public class WeatherForecastService
{
private static readonly string[] Summaries = new[]
{
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
};

public Task<WeatherForecast[]> GetForecastAsync(DateOnly startDate)
{
return Task.FromResult(Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = startDate.AddDays(index),
TemperatureC = Random.Shared.Next(-20, 55),
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
}).ToArray());
}
}
}
34 changes: 18 additions & 16 deletions Pages/Counter.razor
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
@page "/counter"

<h1>Counter</h1>

<p>Current count: @currentCount</p>

<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>

@code {
private int currentCount = 0;

private void IncrementCount()
{
currentCount++;
}
}
@page "/counter"

<PageTitle>Counter</PageTitle>

<h1>Counter</h1>

<p role="status">Current count: @currentCount</p>

<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>

@code {
private int currentCount = 0;

private void IncrementCount()
{
currentCount++;
}
}
42 changes: 42 additions & 0 deletions Pages/Error.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
@page
@model PolarAndRadarChart.Pages.ErrorModel

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Error</title>
<link href="~/css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="~/css/site.css" rel="stylesheet" asp-append-version="true" />
</head>

<body>
<div class="main">
<div class="content px-4">
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>

@if (Model.ShowRequestId)
{
<p>
<strong>Request ID:</strong> <code>@Model.RequestId</code>
</p>
}

<h3>Development Mode</h3>
<p>
Swapping to the <strong>Development</strong> environment displays detailed information about the error that occurred.
</p>
<p>
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
It can result in displaying sensitive information from exceptions to end users.
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
and restarting the app.
</p>
</div>
</div>
</body>

</html>
27 changes: 27 additions & 0 deletions Pages/Error.cshtml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using System.Diagnostics;

namespace PolarAndRadarChart.Pages
{
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
[IgnoreAntiforgeryToken]
public class ErrorModel : PageModel
{
public string? RequestId { get; set; }

public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);

private readonly ILogger<ErrorModel> _logger;

public ErrorModel(ILogger<ErrorModel> logger)
{
_logger = logger;
}

public void OnGet()
{
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
}
}
}
102 changes: 47 additions & 55 deletions Pages/FetchData.razor
Original file line number Diff line number Diff line change
@@ -1,55 +1,47 @@
@page "/fetchdata"
@inject HttpClient Http

<h1>Weather forecast</h1>

<p>This component demonstrates fetching data from the server.</p>

@if (forecasts == null)
{
<p><em>Loading...</em></p>
}
else
{
<table class="table">
<thead>
<tr>
<th>Date</th>
<th>Temp. (C)</th>
<th>Temp. (F)</th>
<th>Summary</th>
</tr>
</thead>
<tbody>
@foreach (var forecast in forecasts)
{
<tr>
<td>@forecast.Date.ToShortDateString()</td>
<td>@forecast.TemperatureC</td>
<td>@forecast.TemperatureF</td>
<td>@forecast.Summary</td>
</tr>
}
</tbody>
</table>
}

@code {
private WeatherForecast[] forecasts;

protected override async Task OnInitializedAsync()
{
forecasts = await Http.GetFromJsonAsync<WeatherForecast[]>("sample-data/weather.json");
}

public class WeatherForecast
{
public DateTime Date { get; set; }

public int TemperatureC { get; set; }

public string Summary { get; set; }

public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
}
}
@page "/fetchdata"
@using PolarAndRadarChart.Data
@inject WeatherForecastService ForecastService

<PageTitle>Weather forecast</PageTitle>

<h1>Weather forecast</h1>

<p>This component demonstrates fetching data from a service.</p>

@if (forecasts == null)
{
<p><em>Loading...</em></p>
}
else
{
<table class="table">
<thead>
<tr>
<th>Date</th>
<th>Temp. (C)</th>
<th>Temp. (F)</th>
<th>Summary</th>
</tr>
</thead>
<tbody>
@foreach (var forecast in forecasts)
{
<tr>
<td>@forecast.Date.ToShortDateString()</td>
<td>@forecast.TemperatureC</td>
<td>@forecast.TemperatureF</td>
<td>@forecast.Summary</td>
</tr>
}
</tbody>
</table>
}

@code {
private WeatherForecast[]? forecasts;

protected override async Task OnInitializedAsync()
{
forecasts = await ForecastService.GetForecastAsync(DateOnly.FromDateTime(DateTime.Now));
}
}
87 changes: 43 additions & 44 deletions Pages/Index.razor
Original file line number Diff line number Diff line change
@@ -1,44 +1,43 @@
@page "/"

<SfChart Title="Weather Statistics">
<ChartPrimaryXAxis ValueType="Syncfusion.Blazor.Charts.ValueType.Category"
LabelPlacement="LabelPlacement.OnTicks"
StartAngle="45" Coefficient="70">
</ChartPrimaryXAxis>
<ChartPrimaryYAxis Minimum="-25" Maximum="25" Interval="10" LabelFormat="{value}°C"></ChartPrimaryYAxis>
<ChartSeriesCollection>
<ChartSeries Type="ChartSeriesType.Polar" DrawType="ChartDrawType.Line"
DataSource="@ChartData" XName="Month" YName="Temperature">
<ChartMarker Visible="true" Height="7" Width="7"></ChartMarker>
</ChartSeries>

</ChartSeriesCollection>
<ChartTooltipSettings Enable="true"></ChartTooltipSettings>

</SfChart>

@code

{
public class ChartDataModel
{
public string Month { get; set; }
public double Temperature { get; set; }
}

public List<ChartDataModel> ChartData = new List<ChartDataModel>
{
new ChartDataModel { Month = "Jan", Temperature = -7.1 },
new ChartDataModel { Month = "Feb", Temperature = -3.7 },
new ChartDataModel { Month = "Mar", Temperature = 0.8 },
new ChartDataModel { Month = "Apr", Temperature = 6.3 },
new ChartDataModel { Month = "May", Temperature = 13.3 },
new ChartDataModel { Month = "Jun", Temperature = 18.0 },
new ChartDataModel { Month = "Jul", Temperature = 19.8 },
new ChartDataModel { Month = "Aug", Temperature = 18.1 },
new ChartDataModel { Month = "Sep", Temperature = 13.1 },
new ChartDataModel { Month = "Oct", Temperature = 4.1 },
new ChartDataModel { Month = "Nov", Temperature = -3.8 },
new ChartDataModel { Month = "Dec", Temperature = -6.8 }
};
}
@page "/"

<SfChart Title="Weather Statistics">
<ChartPrimaryXAxis ValueType="Syncfusion.Blazor.Charts.ValueType.Category"
LabelPlacement="LabelPlacement.OnTicks"
StartAngle="45" Coefficient="70">
</ChartPrimaryXAxis>
<ChartPrimaryYAxis Minimum="-25" Maximum="25" Interval="10" LabelFormat="{value}°C"></ChartPrimaryYAxis>
<ChartSeriesCollection>
<ChartSeries Type="ChartSeriesType.Polar" DrawType="ChartDrawType.Line"
DataSource="@ChartData" XName="Month" YName="Temperature">
<ChartMarker Visible="true" Height="7" Width="7"></ChartMarker>
</ChartSeries>

</ChartSeriesCollection>
<ChartTooltipSettings Enable="true"></ChartTooltipSettings>

</SfChart>

@code
{
public class ChartDataModel
{
public string Month { get; set; }
public double Temperature { get; set; }
}

public List<ChartDataModel> ChartData = new List<ChartDataModel>
{
new ChartDataModel { Month = "Jan", Temperature = -7.1 },
new ChartDataModel { Month = "Feb", Temperature = -3.7 },
new ChartDataModel { Month = "Mar", Temperature = 0.8 },
new ChartDataModel { Month = "Apr", Temperature = 6.3 },
new ChartDataModel { Month = "May", Temperature = 13.3 },
new ChartDataModel { Month = "Jun", Temperature = 18.0 },
new ChartDataModel { Month = "Jul", Temperature = 19.8 },
new ChartDataModel { Month = "Aug", Temperature = 18.1 },
new ChartDataModel { Month = "Sep", Temperature = 13.1 },
new ChartDataModel { Month = "Oct", Temperature = 4.1 },
new ChartDataModel { Month = "Nov", Temperature = -3.8 },
new ChartDataModel { Month = "Dec", Temperature = -6.8 }
};
}
Loading

0 comments on commit 009d5aa

Please sign in to comment.