add feature that mupp_plotter can show/hide lines between the data points.

This commit is contained in:
2022-12-03 11:02:20 +01:00
parent 62c3600fb7
commit 3e534d11f7
5 changed files with 39 additions and 11 deletions

View File

@@ -46,8 +46,9 @@
#include "mupp.h"
// Canvas menu id's
#define P_MENU_ID_EXPORT 10001
#define P_MENU_ID_ABOUT 10002
#define P_MENU_ID_WITH_LINE 10001
#define P_MENU_ID_EXPORT 10002
#define P_MENU_ID_ABOUT 10003
//--------------------------------------------------------------------------
struct PDataPoint {
@@ -113,6 +114,8 @@ private:
PDoubleVector fMarkerSizeList;
PIntVector fColorList;
bool fWithLines{false};
virtual void CreateStyle();
virtual void InitMuppCanvas(const Char_t* title, Int_t wtopx, Int_t wtopy, Int_t ww, Int_t wh);