mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-12-25 01:51:49 +08:00
fixed some compile errors in example
This commit is contained in:
parent
3dc56510e9
commit
fcc8122d75
@ -63,7 +63,7 @@ This texture-filled graph is overlayn by a graph filled with a color gradient th
|
||||
linearGrad.setColorAt(0.3, c2);
|
||||
linearGrad.setColorAt(0.7, c3);
|
||||
linearGrad.setColorAt(1, c4);
|
||||
linearGrad.setCoordinateMode(QGradient::ObjectMode);
|
||||
linearGrad.setCoordinateMode(QGradient::ObjectBoundingMode);
|
||||
// use this CoordinateMode, so the gradient fills the whole graph area
|
||||
graphF2->setFillGradient(linearGrad);
|
||||
```
|
||||
@ -85,7 +85,7 @@ Finally two vertical barcharts with different filling options are added:
|
||||
cl12.setAlphaF(0.5);
|
||||
linearG.setColorAt(0, cl11);
|
||||
linearG.setColorAt(1, cl12);
|
||||
linearG.setCoordinateMode(QGradient::ObjectMode);
|
||||
linearG.setCoordinateMode(QGradient::ObjectBoundingMode);
|
||||
graphBF->setFillGradient(linearG);
|
||||
graphBF->setLineColor(Qt::transparent);
|
||||
```
|
||||
@ -97,7 +97,7 @@ In addition to the graph background properties, also the plot/widget/key backgro
|
||||
QLinearGradient backGrad(QPointF(0, 0), QPointF(1, 1));
|
||||
backGrad.setColorAt(0, QColor("salmon"));
|
||||
backGrad.setColorAt(1, QColor("white"));
|
||||
backGrad.setCoordinateMode(QGradient::ObjectMode);
|
||||
backGrad.setCoordinateMode(QGradient::ObjectBoundingMode);
|
||||
plot.getPlotter()->setPlotBackgroundGradient(backGrad);
|
||||
```
|
||||
|
||||
|
@ -109,7 +109,7 @@ int main(int argc, char* argv[])
|
||||
linearGrad.setColorAt(0.3, c2);
|
||||
linearGrad.setColorAt(0.7, c3);
|
||||
linearGrad.setColorAt(1, c4);
|
||||
linearGrad.setCoordinateMode(QGradient::ObjectMode);
|
||||
linearGrad.setCoordinateMode(QGradient::ObjectBoundingMode);
|
||||
// use this CoordinateMode, so the gradient fills the whole graph area
|
||||
graphF2->setFillGradient(linearGrad);
|
||||
|
||||
@ -124,7 +124,7 @@ int main(int argc, char* argv[])
|
||||
cl12.setAlphaF(0.5);
|
||||
linearG.setColorAt(0, cl11);
|
||||
linearG.setColorAt(1, cl12);
|
||||
linearG.setCoordinateMode(QGradient::ObjectMode);
|
||||
linearG.setCoordinateMode(QGradient::ObjectBoundingMode);
|
||||
graphBF->setFillGradient(linearG);
|
||||
graphBF->setLineColor(Qt::transparent);
|
||||
|
||||
@ -142,7 +142,7 @@ int main(int argc, char* argv[])
|
||||
QLinearGradient backGrad(QPointF(0, 0), QPointF(1, 1));
|
||||
backGrad.setColorAt(0, QColor("salmon"));
|
||||
backGrad.setColorAt(1, QColor("white"));
|
||||
backGrad.setCoordinateMode(QGradient::ObjectMode);
|
||||
backGrad.setCoordinateMode(QGradient::ObjectBoundingMode);
|
||||
plot.getPlotter()->setPlotBackgroundGradient(backGrad);
|
||||
|
||||
// 8. set axis labels
|
||||
|
@ -23,6 +23,13 @@ CONFIG (debug, debug|release) {
|
||||
message("LIBS = $$LIBS")
|
||||
|
||||
|
||||
win32-msvc* {
|
||||
# To enable M_PI, M_E,...
|
||||
DEFINES += _USE_MATH_DEFINES
|
||||
# To fix error: C2338: va_start argument must not
|
||||
# have reference type and must not be parenthesized
|
||||
DEFINES += _CRT_NO_VA_START_VALIDATION
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user