i am able to render my charts to different file types:
dRenderer = ce.getRenderer("dv.SVG");//or dv.PNG
dRenderer.setProperty(IDeviceRenderer.FILE_IDENTIFIER, path);
but how to get the binary data as a stream? the charts will most likely be end in some one's browser. so a file on disk i relativly useless.
(it would be stupid to save many charts on disk before reading them again, wouldn't it?)
Answer in short:
it is possible to give an Outputstream instead of a path string as "FILE_IDENTIFIER" (works with both "dv.SVG" and "dv.PNG")