Created At: 2026-06-14T13:53:28Z
Completed At: 2026-06-14T13:53:28Z
File Path: `file:///c:/Users/HP/Downloads/climate-system/climate-system/index.php`
Total Lines: 4581
Total Bytes: 193572
Showing lines 3540 to 3600
The following code has been modified to include a line number before every line, in the format: <line_number>: <original_line>. Please note that any changes targeting the original code should remove the line number, colon, and leading space.
3540:             width: 1.8,
3541:             value: endP,
3542:             dashStyle: 'Dash',
3543:             zIndex: 2
3544:           });
3545:         }
3546:       }
3547: 
3548:       const chartOptions = {
3549:         chart: {
3550:           zoomType: 'x',
3551:           backgroundColor: isDark ? '#1e293b' : '#ffffff',
3552:           style: {
3553:             fontFamily: "'Poppins', sans-serif"
3554:           }
3555:         },
3556:         title: {
3557:           text: null
3558:         },
3559:         credits: {
3560:           enabled: false
3561:         },
3562:         legend: {
3563:           enabled: true,
3564:           align: 'left',
3565:           verticalAlign: 'top',
3566:           layout: 'horizontal',
3567:           x: 10,
3568:           y: 0,
3569:           itemStyle: {
3570:             color: isDark ? '#f1f5f9' : '#1e293b',
3571:             fontWeight: '600',
3572:             fontSize: '12px'
3573:           }
3574:         },
3575:         tooltip: {
3576:           shared: true,
3577:           valueDecimals: 2,
3578:           backgroundColor: isDark ? '#1e293b' : '#ffffff',
3579:           style: {
3580:             color: isDark ? '#cbd5e1' : '#1e293b'
3581:           }
3582:         },
3583:         xAxis: {
3584:           title: {
3585:             text: 'Tahun',
3586:             style: {
3587:               color: isDark ? '#94a3b8' : '#64748b'
3588:             }
3589:           },
3590:           labels: {
3591:             style: {
3592:               color: isDark ? '#94a3b8' : '#64748b'
3593:             }
3594:           },
3595:           gridLineColor: isDark ? 'rgba(255, 255, 255, 0.1)' : 'rgba(0, 0, 0, 0.08)',
3596:           gridLineWidth: 1,
3597:           tickInterval: 5,
3598:           min: minYr,
3599:           max: maxYr,
3600:           plotBands: plotBands,
The above content does NOT show the entire file contents. If you need to view any lines of the file which were not shown to complete your task, call this tool again to view those lines.
