mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
22 lines
382 B
Plaintext
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
|
|
}]
|
|
}]
|
|
}";
|
|
}
|