var stage = acgraph.create("container");
text1 = stage.text(0, 0, "By Letter Text Wrap Mode. This is another custom text element, which is made multiline with the help of AnyChart Graphics methods. It shows how the natural text behaves.");
text1.wordWrap("break-word");
text1.wordBreak("break-all");
text2 = stage.text(170, 0, "By Word Text Wrap Mode. This is another custom text element, which is made multiline with the help of AnyChart Graphics methods. It shows how the natural text behaves.");
text2.wordWrap("break-word");
text2.wordBreak("normal");