I have found a bug on symbolChooser component (jimu.js/dijit/SymbolChooser.js).
Where can i report it (and propose the very simple "patch") ?
When you want to init the SymbolChooser with a specific text symbol, it doesn't work (therefore it works with marker, line or fill symbol).
There is a little missing in jimu.js/dijit/SymbolChooser.js _initTextSection method :
In ine 728
this._initTextSettings();
should be
this._initTextSettings(this.symbol);
like for other symbol types.