Web-Development-with-Blazor.../Chapter12/MyBlog/Components/Pages/HighChartTest.razor

22 lines
382 B
Plaintext
Raw Normal View History

2023-02-17 15:28:17 +01:00
@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
}]
}]
}";
}