When I do export of project in svg format the css of type <style> does not create it inline, is there a solution to creating inline style?
These are the options that apply to export in svg format
function getOptions() {
var options = new ExportOptionsWebOptimizedSVG();
options.cssProperties = SVGCSSPropertyLocation.STYLEELEMENTS;
options.svgMinify = true;
options.svgResponsive = true;
options.rasterImageLocation = RasterImageLocation.PRESERVE;
options.coordinatePrecision = 4;
options.svgId = SVGIdType.SVGIDUNIQUE;
options.fontType = SVGFontType.SVGFONT;
return options;
}