Re: [Interest] Qt Charts: Making the legend top and right aligned

2018-04-11 Thread Christopher Probst
A solution would be doing something like this: m_chart->legend()->setAlignment(Qt::AlignTop); QApplication::processEvents(); m_chart->legend()->setY(m_chart->plotArea().height() - m_chartView->height() ); Which feels like a big hack. Is there a better way? There must be. On 11 April 2018 a

Re: [Interest] Qt Charts: Making the legend top and right aligned

2018-04-11 Thread Christopher Probst
I have noticed that! Clearly they thought of it! I tried grabbing the y coordinate of the legend and changing it. That also does not work! It would be nice to have a solution to this. On 11 April 2018 at 10:03, Mike Chinander wrote: > Not sure of a solution to this, but noticed that unlike other

Re: [Interest] Qt Charts: Making the legend top and right aligned

2018-04-11 Thread Mike Chinander
Not sure of a solution to this, but noticed that unlike other uses of Qt::Alignment flags, the QLegend docs say, "If you set more than one flag, the result is undefined." https://doc.qt.io/qt-5.10/qlegend.html#alignment-prop On Wed, Apr 11, 2018 at 8:51 AM, Christopher Probst < christop.pro...@gm

[Interest] Qt Charts: Making the legend top and right aligned

2018-04-11 Thread Christopher Probst
Hi, I would like to place the legend of chart that uses Qt charts at the top right of the view. I would have expected something like this to work: m_chart->legend()->setAlignment(Qt::AlignTop| Qt::AlignRight) Unfortunately it does not! Is there a direct way to make the legends (right or left

Re: [Interest] Qt Charts questions

2018-01-08 Thread Mike Chinander
You are right; it's available for Commercial licensees too. I misinterpreted you saying QCustomPlot wasn't an option for you since it was GPL. On Mon, Jan 8, 2018 at 2:03 PM, Murphy, Sean wrote: > > The Qt Charts module is licensed under GPL, not LGPL. See: > > http://doc.qt.io/qt-5/qtmodules.ht

Re: [Interest] Qt Charts questions

2018-01-08 Thread Murphy, Sean
> The Qt Charts module is licensed under GPL, not LGPL. See:  > http://doc.qt.io/qt-5/qtmodules.html#gpl-licensed-addons We have a commercial Qt license, so I believe we aren't GPL-bound for Qt Charts (or the Data Visualization & Virtual Keyboard modules)? That link you sent says "Add-ons avai

Re: [Interest] Qt Charts questions

2018-01-08 Thread Konstantin Tokarev
>>> I find that they work well if you're just trying to have one plot, but I'm >>> struggling to get >>> them to work the way I need them to for our requirements: > >> Are you looking for a library that you want to include into your application >> or do you >> simply want to visualize the data

Re: [Interest] Qt Charts questions

2018-01-08 Thread Mike Chinander
The Qt Charts module is licensed under GPL, not LGPL. See: http://doc.qt.io/qt-5/qtmodules.html#gpl-licensed-addons On Mon, Jan 8, 2018 at 1:13 PM, Murphy, Sean wrote: > > > I find that they work well if you're just trying to have one plot, but > I'm struggling to get > > > them to work the way

Re: [Interest] Qt Charts questions

2018-01-08 Thread Murphy, Sean
> > I find that they work well if you're just trying to have one plot, but I'm > > struggling to get > > them to work the way I need them to for our requirements: > Are you looking for a library that you want to include into your application > or do you > simply want to visualize the data as de

Re: [Interest] Qt Charts questions

2018-01-08 Thread Murphy, Sean
> As long as this isn't for printing... > Fix 1-3 by normailizing each sensor from min to max, and plot that. This is > C++ so you can > override at() in the QXYLineSeries. You should be able to dymically change > the Y legend > when you mouse over a > specific point. I’ll take a look at this

Re: [Interest] Qt Charts questions

2018-01-07 Thread Alexander Semke
On 04.01.2018 22:59, Murphy, Sean wrote: > I noticed that too, but unlike a lot of Qt mailing list topics, they more or less > "just work" and are "as-is" due to the clear and limited scope. I find that they work well if you're just trying to have one plot, but I'm struggling to get them

Re: [Interest] Qt Charts questions

2018-01-05 Thread Jason H
ot;Murphy, Sean" To: "interest@qt-project.org" Subject: Re: [Interest] Qt Charts questions > I noticed that too, but unlike a lot of Qt mailing list topics, they more or less > "just work" and are "as-is" due to the clear and limited scope.   I fi

Re: [Interest] Qt Charts questions

2018-01-04 Thread Murphy, Sean
> That can really distort the shape of a curve in often misleading ways. > And if the sensors can be truly zero, you have another, bigger problem. > > > On Jan 4, 2018, at 2:11 PM, william.croc...@analog.com wrote: > > > > Use a single, logarithmic Y axis. > > (I have never use Qt Charts so I do n

Re: [Interest] Qt Charts questions

2018-01-04 Thread John Weeks
That can really distort the shape of a curve in often misleading ways. And if the sensors can be truly zero, you have another, bigger problem. > On Jan 4, 2018, at 2:11 PM, william.croc...@analog.com wrote: > > Use a single, logarithmic Y axis. > (I have never use Qt Charts so I do not know if th

Re: [Interest] Qt Charts questions

2018-01-04 Thread william.croc...@analog.com
3. Since (I think?) you can only reasonably have two y-axis scales (one on the left, one on the right) per plot, and our sensor value ranges are so varied, we can't reasonably put all the sensors on one plot and set the y-axes scales to the largest range because then you can't see the details

Re: [Interest] Qt Charts questions

2018-01-04 Thread Murphy, Sean
> I noticed that too, but unlike a lot of Qt mailing list topics, they more or > less > "just work" and are "as-is" due to the clear and limited scope. I find that they work well if you're just trying to have one plot, but I'm struggling to get them to work the way I need them to for our req

Re: [Interest] Qt Charts questions

2018-01-04 Thread Jason H
> > I've used them. Once. 3 years ago. > > Yeah, and that was sort of why I asked. Not that qt-interest would be the > WRONG place to ask, but whether it's the BEST place to ask. Mainly because I > rarely see any traffic about the classes in that module here. > I noticed that too, but unlike a

Re: [Interest] Qt Charts questions

2018-01-04 Thread Murphy, Sean
> I've used them. Once. 3 years ago. Yeah, and that was sort of why I asked. Not that qt-interest would be the WRONG place to ask, but whether it's the BEST place to ask. Mainly because I rarely see any traffic about the classes in that module here. Sean This message has been scanned for malw

Re: [Interest] Qt Charts questions

2018-01-04 Thread Jason H
Yes, this is the place. I've used them. Once. 3 years ago. > Sent: Wednesday, January 03, 2018 at 11:41 AM > From: "Murphy, Sean" > To: "interest@qt-project.org" > Subject: [Interest] Qt Charts questions > > Is this the best place to ask q

[Interest] Qt Charts questions

2018-01-03 Thread Murphy, Sean
Is this the best place to ask questions about Qt Charts? I've got a couple questions about it, but I rarely (maybe never?) see questions related to Qt Charts here. Sean This message has been scanned for malware by Forcepoint. www.forcepoint.com ___

Re: [Interest] Qt Charts

2016-03-09 Thread Scott Aron Bloom
Thanks for the info!! -Original Message- From: Konstantin Podsvirov [mailto:konstan...@podsvirov.pro] Sent: Wednesday, March 9, 2016 8:21 AM To: Turunen Tuukka; Edward Sutton; Scott Aron Bloom Cc: interest@qt-project.org Subject: Re: [Interest] Qt Charts Hi all! I experimented with

Re: [Interest] Qt Charts

2016-03-09 Thread Konstantin Podsvirov
ct.org] On > Behalf Of Edward Sutton > Sent: keskiviikkona 9. maaliskuuta 2016 15.15 > To: Scott Aron Bloom > Cc: interest@qt-project.org > Subject: Re: [Interest] Qt Charts > >> On Mar 8, 2016 at 10:00 PM, Scott Aron Bloom wrote: >> >> I have downloaded the la

Re: [Interest] Qt Charts

2016-03-09 Thread Turunen Tuukka
: keskiviikkona 9. maaliskuuta 2016 15.15 To: Scott Aron Bloom Cc: interest@qt-project.org Subject: Re: [Interest] Qt Charts On Mar 8, 2016, at 10:00 PM, Scott Aron Bloom mailto:sc...@towel42.com>> wrote: I have downloaded the latest 5.6.0rc from https://download.qt.io/development_releases/qt/5.6/5.

Re: [Interest] Qt Charts

2016-03-09 Thread Edward Sutton
On Mar 8, 2016, at 10:00 PM, Scott Aron Bloom mailto:sc...@towel42.com>> wrote: I have downloaded the latest 5.6.0rc from https://download.qt.io/development_releases/qt/5.6/5.6.0-rc

Re: [Interest] Qt Charts

2016-03-08 Thread Turunen Tuukka
Andy mailto:asmalo...@gmail.com>> kirjoitti 9.3.2016 kello 6.37: Scott: I believe Qt Charts is scheduled to be included in Qt 5.7: https://wiki.qt.io/New_Features_in_Qt_5.7 http://blog.qt.io/blog/2016/02/22/qt-roadmap-for-2016/ Correct. If you want them now, source code is available: c

Re: [Interest] Qt Charts

2016-03-08 Thread Andy
Scott: I believe Qt Charts is scheduled to be included in Qt 5.7: https://wiki.qt.io/New_Features_in_Qt_5.7 http://blog.qt.io/blog/2016/02/22/qt-roadmap-for-2016/ - Andy On Tue, Mar 8, 2016 at 11:00 PM, Scott Aron Bloom wrote: > I have downloaded the latest 5.6.0rc from > https://download

[Interest] Qt Charts

2016-03-08 Thread Scott Aron Bloom
I have downloaded the latest 5.6.0rc from https://download.qt.io/development_releases/qt/5.6/5.6.0-rc And I cant for the life of me find the new (or old, or any) Qt Charts sub module. Where can it be found? Scott ___ Interest mailing list Interest@

Re: [Interest] Qt Charts 2.0.1 with Qt 5.5 for MinGW 4.9.2 32-bit

2016-02-17 Thread Konstantin Podsvirov
Today I built another port Qt Charts for MinGW 4.9.2 32-bit on Windows. And it works for me. Should work for you. If you already tried to msvc2013, then just uninstall and then again add Qt Charts via the Qt Maintenance Tool. I will be glad reviews and suggestions. Details below. 16.02.2016, 2

[Interest] Qt Charts 2.0.1 with Qt 5.5 for msvc2013 32-bit and 64-bit

2016-02-16 Thread Konstantin Podsvirov
As mentioned here: http://blog.qt.io/blog/2016/01/18/qt-charts-2-1-0-release 5.6 Qt will include the new addition of Qt Charts. However, only in the form of source code. Pre-built add-in is available with a commercial license now. Everyone can build from source: http://code.qt.io/cgit/qt/qtcha

Re: [Interest] Qt charts module

2015-03-05 Thread Bernhard
-project.org] Im Auftrag von Ramakanthreddy Kesireddy Gesendet: Freitag, 6. März 2015 06:18 An: interest@qt-project.org Betreff: [Interest] Qt charts module Hi, Please let me know if Qtcharts module http://doc.qt.io/QtCharts/qtcharts-qmlmodule.html available only under Qt Enterprise license but

[Interest] Qt charts module

2015-03-05 Thread Ramakanthreddy Kesireddy
Hi, Please let me know if Qtcharts module http://doc.qt.io/QtCharts/qtcharts-qmlmodule.html available only under Qt Enterprise license but not in community or opensource? Thanks and Regards, Ramakanth ===