Hi,
the following works:
Graph G;
GraphAttributes GA(G, GraphAttributes::all ^ GraphAttributes::threeD);
...
GraphIO::SVGSettings settings;
settings.fontSize(200);
SvgPrinter printer(GA, settings);
std::ofstream ofs("test.svg");
printer.draw(ofs);The following should work but does not due to a bug. I will fix it for the next release:
GraphIO::SVGSettings settings;
settings.fontSize(200);
GraphIO::drawSVG(GA, "test.svg", settings);
Best regards,
Dagobert