var stage = acgraph.create("container");
textStyle = {fontFamily: "Georgia", fontSize: "15px", color: "green", letterSpacing: "3px", lineHeight: "10px"};
text1 = stage.text().htmlText("<p fontFace='Dancing Script'>This is my custom text,<br>which has several lines, separated<br>with the <br> tags.</p>");
text2 = stage.text(20, 50, "This is my second custom text element, which is made multiline with the help of AnyChart Graphics methods", textStyle);
text2.textOverflow("...");
text2.wordWrap("break-word");
text2.wordBreak("normal");