用于创建 TextStyle
对象的构建器。它允许配置文本的
属性(如名称、颜色和尺寸)。
以下示例展示了如何使用构建器创建文本样式。如需更全面地了解
示例,请参阅 TextStyle
的文档。
// Creates a new text style that uses 26-point, blue, Ariel font. var textStyleBuilder = Charts.newTextStyle() .setColor('#0000FF').setFontName('Ariel').setFontSize(26); var style = textStyleBuilder.build();
方法
方法 | 返回类型 | 简介 |
---|---|---|
build() | TextStyle | 构建并返回使用此构建器构建的文本样式配置对象。 |
setColor(cssValue) | TextStyleBuilder | 设置文本样式的颜色。 |
setFontName(fontName) | TextStyleBuilder | 设置文本样式的字体名称 |
setFontSize(fontSize) | TextStyleBuilder | 设置文本样式的字体大小。 |
详细文档
build()
构建并返回使用此构建器构建的文本样式配置对象。
// Creates a new text style that uses 26-point blue font. var textStyleBuilder = Charts.newTextStyle().setColor('#0000FF').setFontSize(26); var style = textStyleBuilder.build();
返回
TextStyle
- 使用此构建器构建的文本样式对象。
setColor(cssValue)
设置文本样式的颜色。
// Creates a new text style that uses blue font. var textStyleBuilder = Charts.newTextStyle().setColor('#0000FF'); var style = textStyleBuilder.build();
参数
名称 | 类型 | 说明 |
---|---|---|
cssValue | String | 颜色的 CSS 值(例如 "blue" 或 "#00f" )。 |
返回
TextStyleBuilder
- 此构建器,用于链接。
setFontName(fontName)
设置文本样式的字体名称
// Creates a new text style that uses Ariel font. var textStyleBuilder = Charts.newTextStyle().setFontName('Ariel'); var style = textStyleBuilder.build();
参数
名称 | 类型 | 说明 |
---|---|---|
fontName | String | 用于文本样式的字体名称。 |
返回
TextStyleBuilder
- 此构建器,用于链接。
setFontSize(fontSize)
设置文本样式的字体大小。
// Creates a new text style that uses 26-point font. var textStyleBuilder = Charts.newTextStyle().setFontSize(26); var style = textStyleBuilder.build();
参数
名称 | 类型 | 说明 |
---|---|---|
fontSize | Number | 用于文本样式的字体大小(以像素为单位)。 |
返回
TextStyleBuilder
- 此构建器,用于链接。