Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Using QtCharts in version 5.5.1

Using QtCharts in version 5.5.1

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
2 Posts 2 Posters 1.5k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    Alper Karakus
    wrote on last edited by
    #1

    Hello,

    As a very new member of Qt family, I'm getting into the Qt world step by step :) My question for you is,

    I'm trying to make widgets for a platform that is developed in Qt framework. The platform I'm trying to create widgets for has support for Qt widgets but only for the 5.5.1 msvc 2013 64 bit compiler.

    I want to create a widget using "QtCharts" library which is available in version 5.8.

    I looked for a way to get the library from github and statically build it and use it in version 5.5.1 but could not succeeded.

    Also tried to include the library in .pro file; even the QtCharts headers and libs is reached from the source code, I cannot use QtCharts instances on the platform that I'm creating widgets for. /its basically not loaded/

    Can you please give me a little help about what do I need to look for?

    Best Regards

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi and welcome to devnet,

      First thing, the official code repositories can be found at https://code.qt.io, GitHub is just a mirror.

      You should build and install the module like you would any other Qt module. Something like.:

      mkdir build_qtcharts
      pushd build_qtcharts
      /path/to/Qt5.5.1/bin/qmake /path/to/QtCharts
      make
      make install
      popd
      

      And then in your .pro file:

      QT += charts
      

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved