private static getTextPropertiesFunction()

in src/visual.ts [1131:1141]


    private static getTextPropertiesFunction(text: string): TextProperties {
        const fontFamily: string = StreamGraph.DefaultFontFamily,
            fontSize: string = PixelConverter.fromPoint(LegendSettings.DefaultFontSizeInPoints),
            fontWeight: string = StreamGraph.DefaultFontWeight;
        return {
            text,
            fontSize,
            fontWeight,
            fontFamily
        };
    }