टेक्स्ट स्टाइल कॉन्फ़िगरेशन ऑब्जेक्ट. चार्ट के विकल्पों में इसका इस्तेमाल, टेक्स्ट स्टाइल को कॉन्फ़िगर करने के लिए किया जाता है. यह उन एलिमेंट के लिए किया जाता है जो इसे स्वीकार करते हैं. जैसे, टाइटल, हॉरिज़ॉन्टल ऐक्सिस, वर्टिकल ऐक्सिस, लेजेंड, और टूलटिप.
// 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
— रंग की सीएसएस वैल्यू (जैसे, "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
— फ़ॉन्ट का साइज़, पिक्सल में.