| 152 | // Border |
| 153 | STD_SETTER_CMD_IMPL_F_S(PlotArea, SetBorderType, PlotArea::BorderType, borderType, update) |
| 154 | void PlotArea::setBorderType(BorderType type) { |
| 155 | Q_D(PlotArea); |
| 156 | if (type != d->borderType) |
| 157 | exec(new PlotAreaSetBorderTypeCmd(d, type, ki18n("%1: border type changed"))); |
| 158 | } |
| 159 | |
| 160 | STD_SETTER_CMD_IMPL_F_S(PlotArea, SetBorderCornerRadius, qreal, borderCornerRadius, update) |
| 161 | void PlotArea::setBorderCornerRadius(qreal radius) { |