I am playing with graphs and I would like to have the rain totals displayed 
as daily totals in columns.   I've got it working, but when the month is 
rolling over it sorts the columns by the day.   

For example, on June 3rd it showed: 

   - columns listed as 1, 2, 3, 28, 29, 30, 31
   - I would like to have it displayed as 28, 29, 30, 31, 1, 2, 3
   

My Website <http://jrgator.com/weather/graphs/?graph=week>

Code:

[week]

    # Chart Timespan Defaults

    title = "Last 7 Days"

    show_button = true

    button_text = "Week"

    time_length = 604800 # Last 7 days

    tooltip_date_format = "LLL"

    aggregate_type = max

    aggregate_interval = 3600 # 1 hour

    gapsize = 3600000 # 1 hour in milliseconds



    [[chart1]]

        title = Temperature

        [[[outTemp]]]

            zIndex = 1

            name = Temperature

        [[[inTemp]]]

            name = Inside

        [[[windchill]]]

        [[[heatindex]]]

            color = "#f7a35c"

        [[[dewpoint]]]

            color = purple



    [[chart2]]

        title = Rain

        type = column

        xAxis_groupby = day

        [[[rainTotal]]]

            name = Rain Total




-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/a98b8347-d480-4468-9c8e-ed0562946e0co%40googlegroups.com.

Reply via email to