govin
-
Content count
6 -
Joined
-
Last visited
Posts posted by govin
-
-
Dear Haritha,
Thanks but still same issue.
I follow your instruction but still same.
please check code and image for the output..
//IE
strXML.Append("<dataset visible='0' seriesname='Target IOEE' renderAs='Line' >");
foreach (System.Data.DataRow orow in otbl_ie.Rows)
{
if (orow["YVal"].ToString() == null || orow["YVal"].ToString() == "")
strXML.Append("<set value='85'/>");
else
strXML.Append("<set value='" + orow["YVal"].ToString() + "'/>");
}
strXML.Append("</dataset>");
-
Hi,
Thank you for your reply.
Please check atatched file for original is now working one and prepffered is i am expected to display when first time loading page/chart.
..
All legend will display but the line is hide.
-
-
is there any solution for this issue?
i also looking for this scenerio.
please help..
i want to turn off when page load .
-
Hi,
Please help me on this.
As i know after rendering line chart , we can hide(disable) the line by clicked the LEGEND.
for first time , it always enabled(shown).
My request is , how to hide(disbaled) when rendering(loading )the line chart .
after that user can enabled by clicking legend.
Ability to set Multi-Axis line chart checkbox setting by default
in Suggestions & Requests
Posted · Report reply
Hi,
Thank you so much .
Still problem.
My environment is c sharp and asp.net.
strXML.Append("<dataset seriesname='iOEE' showValues='1' visible='0' renderAs='Line' lineThickness='2'>");
foreach (System.Data.DataRow orow in otbl_ioee.Rows)
{
strXML.Append("<set value='" + orow["YVal"].ToString() + "'/>");
}
strXML.Append("</dataset>");
//IE
strXML.Append("<dataset seriesname='Target IOEE' visible='0' renderAs='Line' >");
foreach (System.Data.DataRow orow in otbl_ie.Rows)
{
if (orow["YVal"].ToString() == null || orow["YVal"].ToString() == "")
strXML.Append("<set value='85'/>");
else
strXML.Append("<set value='" + orow["YVal"].ToString() + "'/>");
}
strXML.Append("</dataset>");
and
render chart is
FusionCharts.SetRenderer("javascript");
// string tmp = FusionCharts.RenderChart("StackedColumn2DLine", "", strXML, chartId, chartWidth, chartHeight, false, false, false, null, "showAll", null);
string tmp = FusionCharts.RenderChart("StackedColumn2DLine", "", strXML.ToString(), chartId, chartWidth, chartHeight, false, true);
return tmp;
can you assist