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; }
void PlotArea::plotAreaInit() { d->kdChart->resize(size().toSize()); d->kdChart->replaceCoordinatePlane(d->kdCartesianPlanePrimary); d->kdCartesianPlaneSecondary->setReferenceCoordinatePlane(d->kdCartesianPlanePrimary); KChart::FrameAttributes attr = d->kdChart->frameAttributes(); attr.setVisible(false); d->kdChart->setFrameAttributes(attr); d->wall = new Surface(this); //d->floor = new Surface(this); d->initAxes(); }