Is it possible to customize the appearance of a pie chart created with angularjs-chart in order to achieve a design similar to this:
https://i.sstatic.net/xYcu9.png
While there are some examples available on the angularjs-chart website, one particular example stands out:https://i.sstatic.net/XXRqb.png
This specific design would suit my requirements perfectly, but I need to adjust the color and make the lines thinner to match the image above.
I attempted to use chart-colors and chart-options. However, the former does not seem to be effective and I am unsure how to utilize the options feature.
Below is the code snippet:
In the controller:
app.controller('DashboardController', function DashboardController ($scope) {
$scope.labels = ["Download Sales"];
$scope.data = [100];
});
In HTML:
<canvas id="doughnut" class="chart chart-doughnut"
chart-data="data" chart-labels="labels">
</canvas>
However, the resulting chart differs from my expectations:https://i.sstatic.net/KI5r9.png