Показать сообщение отдельно
  #8 (permalink)  
Старый 24.05.2017, 16:15
Аспирант
Отправить личное сообщение для -VenoM- Посмотреть профиль Найти все сообщения от -VenoM-
 
Регистрация: 31.10.2016
Сообщений: 44

Тэкс. Идём дальше. Пользую "Annotation Chart". Всё прелестно, но шрифт легенды, названия и аннотации очень мелкий. Захотел его увеличить, но не тут-то было. В документации на "Annotation Graph"
https://developers.google.com/chart/...nnotationchart
про стиль шрифта ничего нет. Аналогичные настройки из других графиков (см. ниже) не работают... ни одна. Что посоветуете?

var options = {
            displayAnnotations: true,
            displayZoomButtons: true,
            annotationsWidth: 15,
            thickness: 2,
            //
            titleTextStyle: {
                        // color: <string>,    // any HTML string color ('red', '#cc00cc')
                    fontName: 'Times New Roman', // i.e. 'Times New Roman'
            fontSize: 12, // 12, 18 whatever you want (don't specify px)
            bold: true,    // true or false
            italic: false   // true of false
            },
            hAxis : {
                textStyle : {
                    fontSize: 30 // or the number you want
                }
            },
            legend: {position: 'top', textStyle: {color: 'blue', fontSize: 16}},
            legendtextStyle: {
                    fontName: "Times New Roman",
            fontSize: 16,
            },
            annotations: {
                textStyle: {
                    fontName: 'Times-Roman',
                    fontSize: 18,
                    bold: true,
                    italic: true,
                    color: '#871b47',     // The color of the text.
                    auraColor: '#d799ae', // The color of the text outline.
                    opacity: 0.8          // The transparency of the text.
                }
            },
            fontsize: "20",
            fontSize: "20",
            hAxistitleTextStyle: {color: 'black', fontName: 'Arial', fontSize: "20"},

            // zoomEndTime: new Date(2314, 2, index),
        };
Ответить с цитированием