mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-11 11:47:12 +00:00
23 lines
584 B
JavaScript
23 lines
584 B
JavaScript
$(function () {
|
|
var clusterChart = new Chart("clusterScoreChart", {
|
|
type: 'doughnut',
|
|
data: {
|
|
labels: ["Passing", "Warning", "Error"],
|
|
datasets: [{
|
|
data: [
|
|
fairwindsAuditData.ClusterSummary.Results.Totals.Successes,
|
|
fairwindsAuditData.ClusterSummary.Results.Totals.Warnings,
|
|
fairwindsAuditData.ClusterSummary.Results.Totals.Errors,
|
|
],
|
|
backgroundColor: ['#8BD2DC', '#f26c21', '#a11f4c'],
|
|
}]
|
|
},
|
|
options: {
|
|
responsive: false,
|
|
legend: {
|
|
display: false,
|
|
},
|
|
}
|
|
});
|
|
});
|