void Legend::setFramePen(const QPen &pen) { d->framePen = pen; // KChart KChart::FrameAttributes attributes = d->kdLegend->frameAttributes(); attributes.setPen(pen); d->kdLegend->setFrameAttributes(attributes); d->pixmapRepaintRequested = true; }
void Legend::setFrameColor(const QColor &color) { d->framePen.setColor(color); // KChart KChart::FrameAttributes attributes = d->kdLegend->frameAttributes(); attributes.setVisible(true); QPen pen = attributes.pen(); pen.setColor(color); attributes.setPen(pen); d->kdLegend->setFrameAttributes(attributes); d->pixmapRepaintRequested = true; }