I assume you are looking for a solution that displays a bar graph with a value text above the bar and a day text below the bar.
In this case, it might be better to create your own bar class, that displays a rectangle, a value text and the date/time text.
Please have a look to the attached sample application 'TemperatureHistory' (download example project).

This example implements a simple history list to show the temperature values of the past 30 days as bar graph with text items. The single bar graph items are implemented within the class Application::HistoryItem.
The entire graph is implemented within the class Application::HistoryList - it demonstrates the usage and the combination of the classes Core::SlideTouchHandler and Core::HorizontalList to create a scrollable list with customizable items.
Feel free to adapt the sample to your needs...