Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

why zero valued point in sunburst chart got selected? #767

Open
htimran opened this issue May 8, 2019 · 0 comments
Open

why zero valued point in sunburst chart got selected? #767

htimran opened this issue May 8, 2019 · 0 comments

Comments

@htimran
Copy link

htimran commented May 8, 2019

the issue is, I have four children in my chart and mostly the case one or two children value will be zero. so when I click on that point, the whole chart disappears.

$scope.OeeOptions = {
chart: {
type: 'sunburstChart',
height: 450,
width: "90%",
mode: "size",
duration: 250,
showLabels: true,
labelThreshold: 0.2,
labelFormat: function (d, t) {
return d.name;
}
}
var data = [
{
"name": "Root",
"color": statusColor,
"children": [
{
"name": "analysis",
"chartID": indexchart
},
{
"name": "Closure",
"chartID": indexchart,
"children": []
},
{
"name": "Quality",
"chartID": indexchart,
"children": []
},
{
"name": "Performance",
"chartID": indexchart,
"children": []
}]
},

            ];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant