var fDesc=new Array();
fDesc[0] = "The Dashboard Chart control offers numerous chart types to choose from such as column/bar, stacked column/bar, line, point and pie graphs.
Chart control features include:
-Annotations
-Secondary axes
-Chart animations
-Multiple axes per chart side
-Data point markers
-X & Y axes with smart axis labeling, major & minor tick marks, major & minor grid lines, and customizable intervals
-Data and user annotations (plus user annotations along a range of dates)
-Support for plotting against numeric, date/time and categorical scales
-Settings for controlling the appearance of everything above, such as colors, gradients, borders and line dash styles";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}