Metin stili yapılandırma nesnesi. Başlık, yatay eksen, dikey eksen, açıklama metni ve ipucu gibi metin stilini kabul eden öğeler için metin stilini yapılandırmak üzere grafik seçeneklerinde kullanılır.
// 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();
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
get | String | Metin stilinin rengini alır. |
get | String | Metin stilinin yazı tipi adını alır. |
get | Number | Metin stilinin yazı tipi boyutunu alır. |
Ayrıntılı dokümanlar
get Color()
Metin stilinin rengini alır.
// Creates a new text style that uses blue text and logs the color. const textStyle = Charts.newTextStyle().setColor('blue').build(); Logger.log(textStyle.getColor());
Return
String
: Rengin CSS değeri ("blue"
veya "#00f"
gibi).
get Font Name()
Metin stilinin yazı tipi adını alır.
// 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());
Return
String
: Yazı tipi adı.
get Font Size()
Metin stilinin yazı tipi boyutunu alır.
// 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());
Return
Number
: Yazı tipi boyutu (piksel cinsinden).