mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
42 lines
No EOL
1.6 KiB
C++
42 lines
No EOL
1.6 KiB
C++
#include "ScatterCtrl_Demo.h"
|
|
|
|
|
|
void Tab8::Init()
|
|
{
|
|
CtrlLayout(*this);
|
|
HSizePos().VSizePos();
|
|
scatter.SetRange(13,50,20);
|
|
scatter.SetMajorUnits(1,10);
|
|
scatter.SetXYMin(0,-20, 1000);
|
|
scatter.SetMouseHandling(true, true);
|
|
|
|
s3 <<Pointf(1,-12)<<Pointf(2,-17)<<Pointf(3,-13)<<Pointf(4,15)<<Pointf(5,18)<<Pointf(6,25)<<Pointf(7,27)<<Pointf(8,20)<<Pointf(9,5)<<Pointf(10,-10)<<Pointf(11,24)<<Pointf(12,17);
|
|
double barWidth = 0.4;
|
|
scatter.AddSeries(s3).Legend("Device 1").PlotStyle<BarSeriesPlot>(barWidth).NoMark().Stroke(2, Gray()).Dash(LINE_SOLID).Fill(LtGray());
|
|
|
|
s1<<Pointf(1,-6)<<Pointf(2,-4)<<Pointf(3,2)<<Pointf(4,8)<<Pointf(5,8)<<Pointf(6,15)<<Pointf(7,20)<<Pointf(8,25)<<Pointf(9,14)<<Pointf(10,10)<<Pointf(11,3)<<Pointf(12,-11);;
|
|
scatter.AddSeries(s1).Legend("Temperature").Stroke(3, Null).Dash(LINE_DASHED).MarkStyle<SquareMarkPlot>();
|
|
|
|
s2 <<Pointf(1,1010)<<Pointf(2,1012)<<Pointf(3,1015)<<Pointf(4,1013)<<Pointf(5,1017)<<Pointf(6,1018)<<Pointf(7,1010)<<Pointf(8,1007)<<Pointf(9,1003)<<Pointf(10,1001)<<Pointf(11,1000)<<Pointf(12,1002);
|
|
scatter.AddSeries(s2).Legend("Pressure").Stroke(3, Null).Dash("15 6 6 6 3 6 6 6").SetDataPrimaryY(false);
|
|
scatter.SetDrawY2Reticle();
|
|
|
|
scatter.cbModifFormatX = THISBACK(MyFormat);
|
|
scatter.cbModifFormatDeltaX = THISBACK(MyFormatDelta);
|
|
scatter.SetMaxZoom(40).SetMinZoom(2, 20)
|
|
.SetLabelY("Temperature [C]")
|
|
.SetLabelY2("Pressure [mBar]")
|
|
.SetMarkWidth(1, 4);
|
|
scatter.ShowInfo()
|
|
.ShowContextMenu();
|
|
}
|
|
|
|
ScatterDemo *Construct8()
|
|
{
|
|
static Tab8 tab;
|
|
return &tab;
|
|
}
|
|
|
|
INITBLOCK {
|
|
RegisterExample("Secondary Y", Construct8, __FILE__);
|
|
} |