Grafana sensor data not lining up

I am new to HA, please excuse me if this was already posted.

I’m working with Grafana/InfluxDB integration and working to build my first graph. A simple graph that compares indoor and outdoor temperatures. The indoor temp is a thermostat that results show up as sensors. The outdoor temp is from the same thermostat, but come in as weather.home items. Using the following in my config file converts that data to sensor data.

  - platform: template
    sensors:
      weather_temperature:
        friendly_name: "Outdoor Weather Temperature"
        unit_of_measurement: '°F'
        value_template: "{{ state_attr('weather.home_forcast', 'temperature') }}"
      weather_humidity:
        friendly_name: "Outdoor Weather Humidity"
        unit_of_measurement: '%'
        value_template: "{{ state_attr('weather.home_forcast', 'humidity') }}"

My problem is that the indoor temp’s are poled more frequently than the outdoor. So the graph endpoint in Grafana are not lining up.

It would be great if somebody has advice on how to line up the ends. It appears that the reason for this issue is that the polling is done at different intervals. They are closed to lined up in some cases and not others.

Thank you.