- a readable time font
- sun events
- active statistics (heart rate / steps / stairs)
- YAHOO! weather & forecasts.
- ....

I have Venu 2, and am wondering if anyone else can see HR Line chart, if you set it for the bottom chart? It just shows a blank chart for me. If I choose e.g. Pressure line chart, it shows.
In Garmin Conenct Mobile (Android) you can select the apps that may send the messages to the watch.
Thanks for the picture. Looks really nice! Which watch type is this?
Adding pressure in the right chart is something that's already on my to do list. I have to make my code quite a bit smarter in order to reuse it at several positions without duplicating code in order to not have too much impact on free memory left which is very scarce (less than 5k left)
It's on purpose that the decimal is hidden when the distance becomes 10 or larger to avoid overflowing data on adjacent fields. You might remark that there's free space in your case which is true. It's on my to do to make data field positioning smarter (But i have to do this in a way that I dont consume too much memory and CPU power)
I don't think the custom names is the proper way to localise the date. As I mentioned before I didnt add localisation because of the dependency on Yahoo weather and evenly important the hit i would take in the free memory... The latter is the biggest reason I'm hesitant to add localisation.
Making the Graph larger would be a challenge for the screen redraws: in between minutes there's only 30ms per second time to do screen updates which is very tight. A wider Graph would mean i need to redraw larger parts of the screen which would take too much time.
An additional horizontal data field might be possible if the smarter data field positioning works out.