Results 1 to 7 of 7

Thread: Advice on what is best to use when displaying lots of numerical data

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    May 2011
    Posts
    3
    Thanks
    1
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Advice on what is best to use when displaying lots of numerical data

    Thanks Dan - that's a fair call. I suppose what I'm interested in hearing is about any of these dozen different techniques - especially those that don't use any of the things I've mentioned in the OP. Currently I'm learning towards using a QTableView or QTreeView - just want to beware of any potential gotcha's.

    If anyone's used had experience displaying large datasets and had success/problems - I'd be interested to hear their learnings (ie would they recommend it or if they were going to do it again, would they do it differently).

    Cheers

    [Edit] - Thanks also Chris - I was posted this and then saw your response

  2. #2
    Join Date
    Apr 2010
    Posts
    769
    Thanks
    1
    Thanked 94 Times in 86 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11

    Default Re: Advice on what is best to use when displaying lots of numerical data

    Putting thousands of user interface widgets on display is almost certainly not going to perform well, particularly if many of them are receiving updates rapidly. You may be better off simply painting a grid yourself. If the checkboxes are for display only (not interactive) this would be fast and trivial - just reuse a check image over and over, along with a blank or unchecked image. If you need interactivity, that would take a little more work - but not very much, as it's just a matter of capturing mouse clicks and resolving them to a given rectangular area. This will almost certainly give you the best performance.

    But as others have said, it's really impossible to provide any guidance without more specific requirements.

  3. #3
    Join Date
    Apr 2011
    Posts
    124
    Thanks
    1
    Thanked 10 Times in 10 Posts
    Qt products
    Qt4 Qt/Embedded
    Platforms
    Windows Symbian S60

    Default Re: Advice on what is best to use when displaying lots of numerical data

    Thousands of data points are better displayed as some sort of graph. I've seen many implementations where details about any particular data point are displayed in a pop-up when you hover the cursor over a point in the graph, eg, if you need to provide access to the detailed data.

    It would also help to know whether you're talking phone (I hope not) or desktop.

Similar Threads

  1. displaying data
    By willief in forum Newbie
    Replies: 4
    Last Post: 10th March 2011, 06:33
  2. Replies: 9
    Last Post: 30th July 2010, 09:13
  3. Reading lots of Data from QProcess without freezing
    By nightghost in forum Qt Programming
    Replies: 12
    Last Post: 27th January 2010, 08:23
  4. Best way to display lots of data fast
    By New2QT in forum Newbie
    Replies: 4
    Last Post: 16th October 2008, 22:46
  5. Displaying data in QTable
    By raghvendramisra in forum Qt Tools
    Replies: 1
    Last Post: 6th September 2007, 12:48

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.