I made a testreport.mrt with a Clustered Column with two series... I sat the value data column and argument data column (to se if some of it worked) to {vwSurveillanceValue.SecondsOn} where vwSurveillanceValue is the name I declare for my table in the DataSet...
In my code I declare a new DataSet and fill it with data from a database, and then:
Code: Select all
ds.DataSetName = "dxSurveillance";
ds.Tables[0].TableName = "vwSurveillanceValue";
report.Load("C:\\testreport.mrt");
report.RegData(ds);
StiWebViewer1.Report = report;
Thanks,
Anette