-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Thank you for the sample. It is great to use Highcharts a Blazor app.
I have tried to add to your application the 2nd chart: 3DPie. I copied the code from fiddler and paste to the json string, It works and displayed the Pie but it looks not as a 3D Pie like this
https://www.highcharts.com/demo/3d-pie
I have replaced the json string with json from the link.
But 3d does not work
string chartjson = @" {
chart: {
type: 'pie',
options3d: {
enabled: true,
alpha: 45,
beta: 0
}
},
title: {
text: 'Browser market shares at a specific website, 2014'
},
accessibility: {
point: {
valueSuffix: '%'
}
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
depth: 35,
dataLabels: {
enabled: true,
format: '{point.name}'
}
}
},
series: [{
type: 'pie',
name: 'Browser share',
data: [
['Firefox', 45.0],
['IE', 26.8],
{
name: 'Chrome',
y: 12.8,
sliced: true,
selected: true
},
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
]
}]
}";
Metadata
Metadata
Assignees
Labels
No labels