Set to use HTML in 'name' attribute.
If allow HTML, please do check to avoid security issues, e.g. JavaScript Injection...
Default: false
true means: 'name' attribute can be HTML.
false means: 'name' attribute is only TEXT.
var setting = {
view: {
nameIsHTML: true
}
};
var node = {"name":"<font color='red'>test</font>"};
......