Web-Development-with-Blazor.../Chapter10/MyBlog/Components/Pages/HighChartTest.razor
2023-02-17 15:28:17 +01:00

22 lines
382 B
Plaintext

@page "/HighChartTest"
<HighChart Json="@chartjson">
</HighChart>
@code {
string chartjson = @" {
chart: { type: 'pie' },
series: [{
data: [{
name: 'Does not look like Pacman',
color:'black',
y: 20,
}, {
name: 'Looks like Pacman',
color:'yellow',
y: 80
}]
}]
}";
}