summaryrefslogtreecommitdiff
path: root/src/client/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/scripts')
-rw-r--r--src/client/scripts/aoiscript/evaluator.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client/scripts/aoiscript/evaluator.ts b/src/client/scripts/aoiscript/evaluator.ts
index b7b141e675..c88b19da35 100644
--- a/src/client/scripts/aoiscript/evaluator.ts
+++ b/src/client/scripts/aoiscript/evaluator.ts
@@ -100,7 +100,8 @@ export class ASEvaluator {
responsive: false,
title: {
display: opts.value.has('title'),
- text: opts.value.has('title') ? opts.value.get('title').value : ''
+ text: opts.value.has('title') ? opts.value.get('title').value : '',
+ fontSize: 14,
},
layout: {
padding: {
@@ -128,6 +129,9 @@ export class ASEvaluator {
ticks: {
min: opts.value.has('min') ? opts.value.get('min').value : undefined,
max: opts.value.has('max') ? opts.value.get('max').value : undefined,
+ },
+ pointLabels: {
+ fontSize: 12
}
}
} : {