Draw TProfile from TTree with continuous Lines

Good day.

I am attempting to use a TTree Draw command to make a TProfile with a continuous line joining all of the markers similar to TTree->Draw(“x:y”,"",“C”); but TTree->Draw(“x:y”,"",“profC”); does not do this.

any suggestions on how to accomplish this?

My current thought is to make a TGraphErrors with the TProfile points, but it would be nice if I could just modify the TTree->Draw() command or end result.

 ntuple->Draw("px:py","","prof hist l")

or

ntuple->Draw("px:py","","prof hist c")

Thank you for your help.