#charts #google-visualization
Вопрос:
введите описание изображения здесь
Я пытался изменить цвет текста на белый, который указывал стрелкой на картинке, попробовал аннотации.стиль, но это не сработало. Что я делаю не так?
let dataTemperatures = google.visualization.arrayToDataTable([]); dataTemperatures.addColumn('datetime', 'Date'); dataTemperatures.addColumn('number', 'External Temperature'); dataTemperatures.addColumn('number', 'Dew Point'); dataTemperatures.addRows(temperature_data); let temperature_options = { backgroundColor: chartBackgroundColor, titleTextStyle: { color: textChartColor, fontName: fontNameChart }, annotations: { textStyle: {color: 'white'} }, hAxis: { textStyle: { color: textChartColor }, }, vAxis: { title: "Temperatures (°C)", titleTextStyle: { color: textChartColor, fontName: fontNameChart }, textStyle: { color: textChartColor }, }, series: { 0: { type: 'line', color: '#1CACDC' }, 1: { type: 'line', color: '#00ffff' } } };
Ответ №1:
используйте следующую опцию, чтобы изменить цвет текста легенды
legend: { textStyle: { color: textChartColor } }
Комментарии:
1. надеюсь, это поможет…