If you want an iterator that points to a respective entry instead of between entries, you can use STL-style ones.
Qt Code:
QCPFinancialDataMap::const_iterator it = map.constBegin(); // it points to first entry ++it; // it points to second entry --it; // it points to first entryTo copy to clipboard, switch view to plain text mode
Cheers,
_
Bookmarks