JSRUN 用代码说话

设置yAxis中坐标轴名称的文本样式

编辑教程

设置yAxis中坐标轴名称的文本样式

对 ECharts 图表中的 yAxis 设置了坐标轴名称后,就需要对其文本样式属性做出一些改变, 通常情况下您可能会设置 y 坐标轴名称的颜色和字体,而本节提供更多的坐标轴名称的文本样式设置。


yAxis.nameTextStyle

Object 该属性是控制 y 坐标轴名称的文字样式。


yAxis.nameTextStyle.color

Color 设置 y 坐标轴名称的颜色,默认与 axisLine.lineStyle.color 有相同取值。


yAxis.nameTextStyle.fontStyle

string [ 默认值: 'normal' ]

设置 y 坐标轴名称文字字体的风格。

可以选择:

  • 'normal'
  • 'italic'
  • 'oblique'

yAxis.nameTextStyle.fontWeight

string [ 默认值: normal ]

控制 y 坐标轴名称文字字体的粗细。

可以选择:

  • 'normal'
  • 'bold'
  • 'bolder'
  • 'lighter'
  • 100 | 200 | 300 | 400...

yAxis.nameTextStyle.fontFamily

string [ 默认值: 'sans-serif' ]

设置 y 坐标轴名称文字的字体系列。

默认值为'sans-serif' ,还可以是 'serif' , 'monospace', 'Arial', 'Courier New', 'Microsoft YaHei', ...


yAxis.nameTextStyle.fontSize

number [ 默认值: 12 ]

设置 y 坐标轴名称文字的字体大小。


yAxis.nameTextStyle.align

string 设置 yAxis 坐标轴名称的文字水平对齐方式,默认自动。

可以选择:

  • 'left'
  • 'center'
  • 'right'

rich 中如果没有设置 align,则会取父层级的 align。例如:

{
    align: right,
    rich: {
        a: {
            // 没有设置 `align`,则 `align` 为 right
        }
    }
}

yAxis.nameTextStyle.verticalAlign

string 设置 yAxis 坐标轴名称的文字垂直对齐方式,默认自动。

可以选择:

  • 'top'
  • 'middle'
  • 'bottom'

rich 中如果没有设置 verticalAlign,则会取父层级的 verticalAlign。例如:

{
    verticalAlign: bottom,
    rich: {
        a: {
            // 没有设置 `verticalAlign`,则 `verticalAlign` 为 bottom
        }
    }
}

yAxis.nameTextStyle.lineHeight

number 设置 yAxis 坐标轴名称的行高。

rich 中如果没有设置 lineHeight,则会取父层级的 lineHeight。例如:

{
    lineHeight: 56,
    rich: {
        a: {
            // 没有设置 `lineHeight`,则 `lineHeight` 为 56
        }
    }
}

yAxis.nameTextStyle.backgroundColor

string, Object [ 默认值: 'transparent' ]

设置文字块背景色。

可以直接取颜色值,例如:'#123234', 'red', rgba(0,23,11,0.3)'。

也可以支持使用图片,例如:

backgroundColor: {
    image: 'xxx/xxx.png'
    // 这里可以是图片的 URL,
    // 或者图片的 dataURI,
    // 或者 HTMLImageElement 对象,
    // 或者 HTMLCanvasElement 对象。
}

当使用图片的时候,可以使用 width 或 height 指定高宽,也可以不指定,让其自适应。


yAxis.nameTextStyle.borderColor

string [ 默认值: 'transparent' ]

设置文字块边框颜色。


yAxis.nameTextStyle.borderWidth

number [ 默认值: 0 ]

设置文字块边框宽度。


yAxis.nameTextStyle.borderRadius

number, Array [ 默认值: 0 ]

设置文字块的圆角。


yAxis.nameTextStyle.padding

number, Array [ 默认值: 0 ]

设置文字块的内边距。例如:

  • padding: [3, 4, 5, 6]:表示 [上, 右, 下, 左] 的边距。
  • padding: 4:表示 padding: [4, 4, 4, 4]。
  • padding: [3, 4]:表示 padding: [3, 4, 3, 4]。

注意,文字块的 width 和 height 指定的是内容高宽,不包含 padding。


yAxis.nameTextStyle.shadowColor

string [ 默认值: 'transparent' ]

设置文字块的背景阴影颜色。


yAxis.nameTextStyle.shadowBlur

number [ 默认值: 0 ]

设置文字块的背景阴影长度。


yAxis.nameTextStyle.shadowOffsetX

number [ 默认值: 0 ]

设置文字块的背景阴影 X 偏移。


yAxis.nameTextStyle.shadowOffsetY

number [ 默认值: 0 ]

设置文字块的背景阴影 Y 偏移。


yAxis.nameTextStyle.width

number, string 设置文字块的宽度。

一般不用给它指定值,在不指定的时候就自动是文字的宽度。在想做表格项或者使用图片(参见 backgroundColor)时,可能会使用它。

注意,文字块的 width 和 height 指定的是内容高宽,不包含 padding。

width 也可以是百分比字符串,如 '100%':表示的是所在文本块的 contentWidth(即不包含文本块的 padding)的百分之多少。之所以以 contentWidth 做基数,因为每个文本片段只能基于 content box 布局。如果以 outerWidth 做基数,则百分比的计算在实用中不具有意义,可能会超出。

注意,如果不定义 rich 属性,则不能指定 width 和 height。


yAxis.nameTextStyle.height

number, string 设置文字块的高度。

与设置文字块的宽度一样,一般不用指定值,自动会是文字的高度。在使用图片(参见 backgroundColor)时,可能会使用它。

注意,文字块的 width 和 height 指定的是内容高宽,不包含 padding。

注意,如果不定义 rich 属性,则不能指定 width 和 height。


yAxis.nameTextStyle.textBorderColor

string [ 默认值: 'transparent' ]

设置坐标轴名称文字本身的描边颜色。


yAxis.nameTextStyle.textBorderWidth

number [ 默认值: 0 ]

设置坐标轴名称文字本身的描边宽度。


yAxis.nameTextStyle.textShadowColor

string [ 默认值: 'transparent' ]

设置坐标轴名称文字本身的阴影颜色。


yAxis.nameTextStyle.textShadowBlur

number [ 默认值: 0 ]

设置坐标轴名称文字本身的阴影长度。


yAxis.nameTextStyle.textShadowOffsetX

number [ 默认值: 0 ]

设置坐标轴名称文字本身的阴影 X 偏移。


yAxis.nameTextStyle.textShadowOffsetY

number [ 默认值: 0 ]

设置坐标轴名称文字本身的阴影 Y 偏移。

JSRUN闪电教程系统是国内最先开创的教程维护系统, 所有工程师都可以参与共同维护的闪电教程,让知识的积累变得统一完整、自成体系。 大家可以一起参与进共编,让零散的知识点帮助更多的人。
X
支付宝
9.99
无法付款,请点击这里
金额: 0
备注:
转账时请填写正确的金额和备注信息,到账由人工处理,可能需要较长时间
如有疑问请联系QQ:565830900
正在生成二维码, 此过程可能需要15秒钟