Hello, niketnilay
I change in my css following code
/it changes both scale and current number fonts/
element.style {
}
text {
font-size: 20px !important;
}
to
svg text:last-child{
font-size: 30px !important;
}
but no changes, gauge is with original font.
Using Developer mode in Chrome I picked object and found following for scale font but not "svg text"
element.style {
color: #555555;
font-size: 11px;
fill: #555555;
}
text[Attributes Style] {
text-anchor: end;
}
user agent stylesheet
text {
white-space: nowrap;
}
user agent stylesheet
text, foreignObject {
display: block;
}
user agent stylesheet
* {
transform-origin: 0px 0px 0px;
}
Inherited from svg
Style Attribute {
font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
font-size: 12px;
}
... View more