Skip to content

Commit

Permalink
radar chart design
Browse files Browse the repository at this point in the history
  • Loading branch information
RELNO committed May 29, 2024
1 parent 991d9fa commit b02d366
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/views/CityScopeJS/VisContainer/RadarChart/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,15 @@ const options = {
r: {
ticks: {
display: false,
backdropColor: 'rgba(0, 0, 0, 0)', // transparent background
},
angleLines: {
color: "#696969",
},
suggestedMin: 0,
suggestedMax: 1,
grid: {
color: "#696969",
color: "#959595",
circular: true,
},
pointLabels: {
Expand Down Expand Up @@ -93,6 +94,7 @@ const optionsNoData = {
},
ticks: {
color: "#363636",
backdropColor: 'rgba(0, 0, 0, 0)', // transparent background
},
},
},
Expand All @@ -102,10 +104,10 @@ const noData = {
labels: [null, null, null],
datasets: [
{
label: "No indicator data...",
label: "Waiting for data...",
data: [null, null, null],
backgroundColor: "#363636",
borderColor: "#363636",
backgroundColor: "#00000000",
borderColor: "#00000000",
borderWidth: 1,
},
],
Expand Down

0 comments on commit b02d366

Please sign in to comment.