Posts by Arnaut • 41 points
2 posts
-
1
votes1
answer39
viewsA: Doughnut Kind chart with multiple series
The solution is in the following code: $scope.datasetOverride = [{ fill: true, backgroundColor: [ "#66ff33", "#36A2EB", "#FFCE56" ] }, { fill: true, backgroundColor: [ "#ffff00", "#46BFBD",…
-
3
votes1
answer39
viewsQ: Doughnut Kind chart with multiple series
I am using Angular Charts to plot a Doughnut chart; my code is structured as follows: $scope.data = [ ['abc', 'def'], ['fgh', 'ijk'], ]; $scope.labels = ['Ask', 'Bid']; $socpe.series = ['Volume…