I made up some similar data in one column where there is some type of seasonal trend. If it is graphed using the Plot command as is, you get this …
It sounds like what you would rather show is something like this…
To do this we created two new columns using Expression columns with the Date/Time Functions.
The “year(Date)” function let’s us extract a column to use as a mask, Year.
The MonthDay column uses the “seconds(year, month,day)” function to construct a date that has all the same dates as before, but now has all the same year. Doesn’t really matter what year you use here just that you use something fairly reasonable. Here was set it to 2000.
Once you have that, now you can create a Plot command for each line, using the MonthDay column as the x value. Add a mask for each year and make sure the Legend name matches.
To make it more convenient to adjust the line width, you can also add a slider variable and enter the name in the line width. Here we called the variable “width”.
We’ll upload this file to the File > On-line examples.
Does this approach work for your data?