• Как настроить Highcharts?

    @voine Автор вопроса
    let categories = ['Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 'Июл', 'Авг', 'Сен', 'Окт', 'Ноя', 'Дек'];
        let day = [12,14,17,20,26,33,35,37,33,23,18,14];
        let night = [6,10,12,14,18,23,24,26,25,18,13,10];
        let title = tempChartTitle || 'Погода';
    
        Highcharts.chart('js-tt-seo-weather', {
          chart: {
            type: 'column'
          },
          title: {
            text: title,
            align: 'left',
            style: {
              "font-size": "18px",
              "font-weight": "bold",
              "font-family": "Roboto"
            }
          },
          tooltip: {
            enabled: false
          },
          xAxis: {
            categories: categories,
            labels: {
              style: {
                "color": "#8F969A",
                "font-size":"14px",
                "font-family": "Roboto"
              }
            }
          },
          yAxis: {
            title: {
              text: null
            },
    
          },
          credits: false,
          legend: {
            align: 'right',
            verticalAlign: 'top',
            floating: true,
            backgroundColor: "#ffffff",
            shadow: false
          },
          plotOptions: {
            column: {
              stacking: 'normal',
              dataLabels: {
                enabled: true,
                verticalAlign: 'top',
                y: -20,
                "formatter": function () { return this.y + '°'; }
              }
            }
          },
          series: [{
            name: ' t днем, °С',
            data: day,
            color: '#FFBD46',
            borderWidth: 0,
          }, {
            name: ' t ночью, °С',
            data: night,
            color: '#4B6493',
            borderWidth: 0,
            dataLabels: {
              enabled: false}
          }],
        });