💄 将雷达图的 OR 替换成 DSPS

This commit is contained in:
2024-05-04 07:00:27 +08:00
parent 65d019a6d3
commit e2708b661d
2 changed files with 4 additions and 4 deletions

View File

@@ -284,8 +284,8 @@
indicator: [
{ name: 'PPS' },
{ name: 'APP', nameRotate: 60 },
{ name: 'DSPP', nameRotate: -60 },
{ name: 'OR' },
{ name: 'DSPS', nameRotate: -60 },
{ name: 'DSPP' },
{ name: 'CI', nameRotate: 60 },
{ name: 'GE', nameRotate: -60 },
],
@@ -346,7 +346,7 @@
},
data: [
{
value: [{{pps}}, {{app}}, {{dspp}}, {{OR}}, {{ci}}, {{ge}}],
value: [{{pps}}, {{app}}, {{dsps}}, {{dspp}}, {{ci}}, {{ge}}],
},
],
},

View File

@@ -56,8 +56,8 @@ async def render(
value_min: int,
offset: int,
app: str | float,
dsps: str | float,
dspp: str | float,
OR: str | float, # noqa: N803
ci: str | float,
ge: str | float,
) -> str: ...