ScatterDraw: legendLine initialized

git-svn-id: svn://ultimatepp.org/upp/trunk@15162 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
koldo 2020-09-29 17:05:52 +00:00
parent f50d7ecf43
commit 54dc708024
3 changed files with 4 additions and 1 deletions

View file

@ -561,6 +561,7 @@ ScatterDraw::ScatterBasicSeries::ScatterBasicSeries() {
labelsDx = labelsDy = 0;
labelsAlign = ALIGN_CENTER;
showLegend = true;
legendLine = true;
}
void ScatterDraw::ScatterBasicSeries::Init(int index) {

View file

@ -159,6 +159,7 @@ protected:
("barWidth", barWidth)
("isClosed", isClosed)
("showLegend", showLegend)
("legendLine", legendLine)
;
if (io.IsLoading()) {
if (!IsNull(markP))
@ -207,6 +208,7 @@ protected:
% barWidth
% isClosed
% showLegend
% legendLine
;
if (s.IsLoading()) {
if (!IsNull(markP))

View file

@ -7,8 +7,8 @@ uses
options(MSC) -D_SCL_SECURE_NO_WARNINGS;
file
ScatterDraw.h,
ScatterDraw.cpp,
ScatterDraw.h,
DataSource.cpp,
DataSource.h,
Equation.cpp,