ScattScatterCtrl_demo: Fixed message

git-svn-id: svn://ultimatepp.org/upp/trunk@15772 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
koldo 2021-02-15 17:05:31 +00:00
parent 2a2d4cab03
commit b9f4c69972
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ void TabUserEquation::OnUpdate()
return;
}
userEquation.Init("Reach flow (Coull)", ~equation);
userEquation.Init("User equation", ~equation);
scatter.RemoveAllSeries();
scatter.AddSeries(userEquation).Legend(userEquation.GetFullName()).NoMark().Stroke(2).Units("m3/s");

View file

@ -33,7 +33,7 @@ void Tab1_Basic::Init()
scatter.AddSeries(s5).Legend("Series 5").PlotStyle<BarSeriesPlot>().BarWidth(barWidth).Dash("").NoMark().Fill();
scatter.SetRange(60, 50).SetMajorUnits(10, 10);
scatter.ShowInfo().ShowContextMenu().ShowPropertiesDlg().ShowProcessDlg().SetPopText("h", "v", "v2").SetMouseHandling(true, true);
scatter.ShowAllMenus().SetPopText("h", "v", "v2").SetMouseHandling(true, true);
scatter.SetLegendPos(Point(20, 20));
}