BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
annotations: [{ content: '<div id="annotation"></div>', coordinateUnits: 'Pixel', region: 'Chart', x: '15%', y: '25%' }],
tooltipRender: function (args) {
if(args.text.length > 0){
if(count < 4){
tooltipArray += args.text + '<br/>';
count++;
}
if(count === 4){
count = 0;
chart.setAnnotationValue(0, '<div id="annotation" style="line-height: 18px;font-size:13px;background: #fff; opacity:0.9; color: #464e56; ' +
' box-shadow:0 0 8px 0 rgba(70,78,86,.25); padding: 7px 10px; border-radius: 3px">' + tooltipArray + '</div>');
tooltipArray = [];
}
}
args.text = '';
}, |