Replies: 1 comment
-
Hello, Can I change the color value to Hex instead of a symbol? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello
In the image below,
You are attempting to change the text color on the body part of the tooltip, but it is not being applied.
I'm asking if there's anything wrong.
source part)
theme: {
legend: {
label: {
fontSize:
12,
fontFamily: 'Lato'
}
},
yAxis: {
title: '',
label: {
fontFamily: 'Lato',
fontSize: 12,
formatter: (value) =>
${value.toString().replace(/\B(?<!\.\d*)(?=(\d{3})+(?!\d))/g, ',')} 원
},
},
xAxis: {
title: '',
label: {
fontFamily: 'Lato',
fontSize: 12
}
},
tooltip: {
body: {
fontSize: 100,
color: 'white',
},
},
},
``
Beta Was this translation helpful? Give feedback.
All reactions