Sort BY date

I have a chart where i have
Event Name - TEXT
Event Date - DATE

I am trying to show TEXT sorted by Date - date First Sort
See image
the chart remains sorted by Text?

@scottEh - You can try to create a calculated field named Rank_of_Edate which should have expression like :

rank([{edate} ASC])

then sort the ename field with that new calculated field (which will be numeric in nature due to it being rank). Let me know if this helps! Thanks!