Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. qlineseries
    Log in to post

    • SOLVED Real-time QtChart graph with QLineSeries slow down
      General and Desktop • qchart slow qlineseries • • zedhzelgc  

      5
      0
      Votes
      5
      Posts
      926
      Views

      Hello, I tried the library qwt and saw that the slowdown effect did not occur. Update all my code to adapt it to the qwt library and once integrated, no type of slowdown occurs even after a couple of days. Also this library allowed me to insert better visual effects. Thanks for the help.
    • UNSOLVED QCharts
      General and Desktop • qtcharts qlineseries • • Pk23  

      1
      0
      Votes
      1
      Posts
      198
      Views

      No one has replied

    • SOLVED how do I add an additional series or more to a LinearGraph?
      General and Desktop • qlineseries lineargraph • • mmikeinsantarosa  

      5
      0
      Votes
      5
      Posts
      427
      Views

      I think I just figured it out by setting using a bool and setting it to false at the beginning. Then just before attaching the axis determine axis visibility. If the bool is false, set the axis visibility to true then set the bool to true. The next time thru, the bool will be true and set visibility to false. I ge both lines and only one set of scales. if (axisXHasBeenAdded == false) { axisX->setVisible(true); axisXHasBeenAdded = true; } else { axisX->setVisible(false); }
    • UNSOLVED Unable to remove axes from QChart
      General and Desktop • qtcharts qchart qlineseries qabstractaxis qscatterseries • • Dilip D  

      1
      0
      Votes
      1
      Posts
      1210
      Views

      No one has replied

    • UNSOLVED Gaps in QLineSeries
      General and Desktop • charts chart qlineseries • • fantaz  

      4
      1
      Votes
      4
      Posts
      1024
      Views

      When using line series, we've had severe performance problems. We end up with thousands of series to handle all of the gaps and have to create parallel scatter series because we want icons for each point that aren't part of the standard icon set. We pay a huge cost both constructing and destructing the series. Seems like it may be refreshing on each add series, but even removeAllSeries is slow. Have tried many things to suspend the painting, but with no timing effect. Any ideas on how to have many gaps without destroying performance?
    • SOLVED toggle QLineSeries visibility with QPushButton & connect?
      General and Desktop • connect visibility qlineseries toggle • • pauledd  

      3
      0
      Votes
      3
      Posts
      915
      Views

      great! That works. With that I can spare the toggle functions at all. Thanks!