PDA

View Full Version : QXYSeries clicked()



marrierius
15th December 2016, 16:52
Hi all,

I would like to highlight a point on a scatterseries after clicking it, so I did the following

connect(scatterseries, SIGNAL(clicked(QPointF)), this, SLOT(slotPointClicked(QPointF)));

However, it seems that the point will be highlighted either by left-click or right-click. Does anyone have idea on how to restrict it to left-click only?

Thanks.