텍스트 스타일 구성 객체입니다. 차트 옵션에서 제목, 가로축, 세로축, 범례, 도움말과 같이 텍스트 스타일을 허용하는 요소의 텍스트 스타일을 구성하는 데 사용됩니다.
// This example creates a chart specifying different text styles for the title // and axes. const sampleData = Charts.newDataTable() .addColumn(Charts.ColumnType.STRING, 'Seasons') .addColumn(Charts.ColumnType.NUMBER, 'Rainy Days') .addRow(['Winter', 5]) .addRow(['Spring', 12]) .addRow(['Summer', 8]) .addRow(['Fall', 8]) .build(); const titleTextStyleBuilder = Charts.newTextStyle().setColor('#0000FF').setFontSize(26).setFontName( 'Ariel'); const axisTextStyleBuilder = Charts.newTextStyle().setColor('#3A3A3A').setFontSize(20).setFontName( 'Ariel'); const titleTextStyle = titleTextStyleBuilder.build(); const axisTextStyle = axisTextStyleBuilder.build(); const chart = Charts.newLineChart() .setTitleTextStyle(titleTextStyle) .setXAxisTitleTextStyle(axisTextStyle) .setYAxisTitleTextStyle(axisTextStyle) .setTitle('Rainy Days Per Season') .setXAxisTitle('Season') .setYAxisTitle('Number of Rainy Days') .setDataTable(sampleData) .build();
메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
get | String | 텍스트 스타일의 색상을 가져옵니다. |
get | String | 텍스트 스타일의 글꼴 이름을 가져옵니다. |
get | Number | 텍스트 스타일의 글꼴 크기를 가져옵니다. |
자세한 문서
get Color()
텍스트 스타일의 색상을 가져옵니다.
// Creates a new text style that uses blue text and logs the color. const textStyle = Charts.newTextStyle().setColor('blue').build(); Logger.log(textStyle.getColor());
리턴
String
: 색상의 CSS 값입니다 (예: "blue"
또는 "#00f"
).
get Font Name()
텍스트 스타일의 글꼴 이름을 가져옵니다.
// Creates a new text style that uses Ariel font and logs the font name. const textStyle = Charts.newTextStyle().setFontName('Ariel').build(); Logger.log(textStyle.getFontName());
리턴
String
- 글꼴 이름입니다.
get Font Size()
텍스트 스타일의 글꼴 크기를 가져옵니다.
// Creates a new text style that uses 18 pixel font size and logs the font size. const textStyle = Charts.newTextStyle().setFontSize(18).build(); Logger.log(textStyle.getFontSize());
리턴
Number
: 글꼴 크기(픽셀)입니다.