active questions tagged dundas - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T20:17:01Z http://stackoverflow.com/feeds/tag/dundas http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/896553/dundas-vs-componentart-which-one-is-better 1 Dundas vs ComponentArt which one is better Binoj Antony 2009-05-22T06:09:51Z 2009-09-24T07:29:32Z <p>Planning to buy a charting solution (for ASP.NET), narrowed down to Dundas and componentArt.</p> <p>Is there a feature comparison sheet, comparing these two components?</p> <p>Has anyone used both of these and found any one of them to be better than the other?</p> <p>I had used ComponentArt in a project before and was impressed with its 3d like color settings, dundas look bland comparitively...</p> <p>[EDIT] - Want to use it on .net Framework 2.0</p> http://stackoverflow.com/questions/1433532/reporting-services-linear-gauge-scale 0 Reporting Services Linear Gauge Scale lnediger 2009-09-16T14:56:10Z 2009-09-16T14:56:10Z <p>I have set up a linear gauge in Reporting Services 2008. What I would like to do is specify my scale interval. The only problem with this is the scale intervals I would like to use are not at constant intervals. </p> <p>For example, say the scale min is $0 and the scale max is $10 000. Depending on the chart I may want an interval marker labelled at $2000, $5000, then $7945. </p> <p>These numbers would be calculated based on percentages of scale max specified in the dataset. I have not been able to figure out how I would go about doing this.</p> http://stackoverflow.com/questions/1229736/maximum-programmatic-zoom-in-dundas-charts 0 Maximum programmatic zoom in Dundas Charts Colin Desmond 2009-08-04T20:22:28Z 2009-08-04T20:22:28Z <p>We use the Dundas Chart for WinForms and programmatically set the initial zoom values. If we set these to be too small, we get a nice red cross and an exception (System.OverflowException).</p> <p>An example would be when we set the x zoom min to be 1.399 and the x max zoom to be 1.401.</p> <p>I presume we should be able to determine whether the zoom extent we want to zoom to is too small, but I don't know how to calculate this. </p> <p>Does anyone else know. </p> http://stackoverflow.com/questions/1214979/is-it-possible-to-extend-a-dundas-chart-control-using-a-partial-class 0 Is it possible to extend a dundas chart control using a partial class? Raúl Roa 2009-07-31T21:26:37Z 2009-07-31T21:32:43Z <p>Is it possible to extend a dundas chart control or any other propietary (binary distributed) control(s) where we don't have the sources using partial classes? </p> <p>I thought it could be done as long as the dll was referenced, but I've been struggling trying to find a way of doing this. </p> <p>I'm trying to <strong>avoid</strong> the creation of an ASP .NET Server Control which inherits from the Dundas.Charting.WebControl.Chart class.</p> http://stackoverflow.com/questions/1171244/help-updating-chart -1 help updating chart nemo 2009-07-23T11:51:08Z 2009-07-26T22:58:58Z <p>I have two methods that work together and they make a big double array (every 1/1000000S 5000 item) and this array should show a chart (Dundas chart). But the chart is not updating.</p> <p>Please help me!</p> <p>Sorry for my bad English!</p> <p>This my code:</p> <pre><code>using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; using System.Runtime.InteropServices; using System.Threading; using Dundas.Charting.WinControl; using Dundas.Charting.WinControl.Utilities; namespace Online_Detector { public partial class frmMain : Form { public frmMain() { InitializeComponent(); } #region Fields double fName = 0; public object dataDigitalGlobal; long num; #endregion #region Method private void ManualSavetoFile(double Value, double Time) { //Get Path //fName += 1; string IntLocation = Convert.ToString(fName) + ".txt"; #region Write File FileStream FOut = null; try { if (File.Exists(IntLocation)) FOut = new FileStream(IntLocation, FileMode.Append, FileAccess.Write, FileShare.ReadWrite, 4096, true); else FOut = new FileStream(IntLocation, FileMode.Create, FileAccess.Write, FileShare.ReadWrite, 4096, true); StreamWriter SOut = new StreamWriter(FOut); // &lt;Add Line To Export File &gt; lock (this) { if (FOut.CanWrite) { SOut.WriteLine(Value); SOut.WriteLine(Time); } } // &lt;Add Line To Export File &gt; SOut.Close(); FOut.Close(); } catch (IOException Err) { MessageBoxManager.OK = "&amp;تاييد"; MessageBoxManager.Register(); MessageBox.Show("خطاي زير در عمليات تهيه فايل خروجي رخ داد:" + "\r" + Err.Message, "خطا", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1, MessageBoxOptions.RtlReading); MessageBoxManager.Unregister(); } catch (FieldAccessException Err) { MessageBoxManager.OK = "&amp;تاييد"; MessageBoxManager.Register(); MessageBox.Show("خطاي زير در عمليات تهيه فايل خروجي رخ داد:" + "\r" + Err.Message, "خطا", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1, MessageBoxOptions.RtlReading); MessageBoxManager.Unregister(); } catch (Exception Err) { MessageBoxManager.OK = "&amp;تاييد"; MessageBoxManager.Register(); MessageBox.Show("خطاي زير در عمليات تهيه فايل خروجي رخ داد:" + "\r" + Err.Message, "خطا", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1, MessageBoxOptions.RtlReading); MessageBoxManager.Unregister(); } finally { FOut.Close(); } #endregion //Write File } #endregion #region Event on Tab Report private void btnStart_Click(object sender, EventArgs e) { try { //check all the setting axAdvAICtrl.ChannelScanStart = Convert.ToInt32(txtChannelStart.Text); axAdvAICtrl.ChannelScanCount = Convert.ToInt32(txtChannelCount.Text); int count = int.Parse(txtDataCount.Text); // Ocx allocate the buffer of DataDigital ,equal to new object! dataDigitalGlobal = null; // Engage the FAI with Asychronous mode count = axAdvAICtrl.AcquireBulkDataToMemory(count, out dataDigitalGlobal, -1, chkCylic.Checked, false); num = 0; // Disable all controls on the form btnStart.Enabled = false; // and only Enable the Stop button btnEnd.Enabled = true; } catch (Exception err) { MessageBox.Show(err.Message, "Error"); axAdvAICtrl.StopAcquireBulkData(0); } } private void btnEnd_Click(object sender, EventArgs e) { //stop the acquisition axAdvAICtrl.StopAcquireBulkData(0); // Enable all controls on the form btnStart.Enabled = true; // and only Disable the Stop button btnEnd.Enabled = false; } #endregion //this event every 1/500000 private void axAdvAICtrl_OnFirstHalfBulkDataReady(object sender, AxAdvAILib._IAdvAIEvents_OnFirstHalfBulkDataReadyEvent e) { #region "Get Data " try { object analogArray = e.analogArray; long i; if (analogArray != null) { float[] voltage; voltage = (float[])analogArray; for (i = 0; i &lt; Convert.ToInt32(txtDataCount.Text) / 2; i++) { // Write Data To Manual file ManualSavetoFile(voltage[i], (num / axAdvAICtrl.DataSampleRate)); // Define some variables int numberOfPointsInChart = Convert.ToInt32(txtDataCount.Text); int numberOfPointsAfterRemoval = 1; chaIon.Series["Series1"].Points.AddXY(xValue[arrayCounter], yValue[arrayCounter]); // Keep a constant number of points by removing them from the left while (chaIon.Series[0].Points.Count &gt; numberOfPointsInChart) { // Remove data points on the left side while (chaIon.Series[0].Points.Count &gt; numberOfPointsAfterRemoval) { chaIon.Series[0].Points.RemoveAt(0); } } chaIon.Invalidate(); num++; } } } catch (Exception err) { threadChart.Abort(); MessageBox.Show(err.Message, "Error"); } #endregion } //this event every 1/500000 private void axAdvAICtrl_OnSecondHalfBulkDataReady(object sender, AxAdvAILib._IAdvAIEvents_OnSecondHalfBulkDataReadyEvent e) { #region "Get Data " try { object analogArray = e.analogArray; long i; if (analogArray != null) { float[] voltage; voltage = (float[])analogArray; for (i = 0; i &lt; Convert.ToInt32(txtDataCount.Text) / 2; i++) { // Write Data To Manual file ManualSavetoFile(voltage[i], (num / axAdvAICtrl.DataSampleRate)); // Define some variables int numberOfPointsInChart = Convert.ToInt32(txtDataCount.Text); int numberOfPointsAfterRemoval = 1; chaIon.Series["Series1"].Points.AddXY(xValue[arrayCounter], yValue[arrayCounter]); // Keep a constant number of points by removing them from the left while (chaIon.Series[0].Points.Count &gt; numberOfPointsInChart) { // Remove data points on the left side while (chaIon.Series[0].Points.Count &gt; numberOfPointsAfterRemoval) { chaIon.Series[0].Points.RemoveAt(0); } } chaIon.Invalidate(); num++; } } } catch (Exception err) { threadChart.Abort(); MessageBox.Show(err.Message, "Error"); } #endregion } private void frmMain_FormClosing(object sender, FormClosingEventArgs e) { axAdvAICtrl.StopAcquireBulkData(0); } } } </code></pre> http://stackoverflow.com/questions/1098131/c-microsoft-chart-control-dundas-charts-clear-contents 0 C# Microsoft Chart Control/Dundas Charts Clear Contents!? Goober 2009-07-08T13:38:09Z 2009-07-08T14:02:27Z <p>Hello! I am using the Dundas Chart Controls/Microsoft Chart Control for .Net. Currently I have a method which populates the chart control with date from a generic List.</p> <p>Lets say for example that I populate the chart with data from one list. Then I want to populate the chart with data from another list.</p> <p>The problem I have is that when populating the chart with the data from the second list, I end up with a chart that displays the combined data from list 1 and list 2, whereas I want it to display only the data from the first list, and then clear the chart before displaying the data from the second list.</p> <p>I have tried various method calls to clear the chart control before populating it with the data from the second list but to no avail.</p> <p>Does anyone know of a way of doing this? Help appreciated greatly,</p> <p>Regards,</p> http://stackoverflow.com/questions/1015917/dundas-mailer -1 Dundas Mailer [closed] namadgi 2009-06-19T00:46:33Z 2009-06-19T00:46:33Z <p>Hi All, <br> Our company is using Dundas Mailer via our Axapta 3.0 Application. As a test we provided Dundas Emailer with an invalid address - "Mr Bloggs". This address did not result in an error as I expected but instead it seems the system selected several business and customer email addresses (at random) and emailed them the test email. <br> <br> Can anyone shed some light on this behaviour? Is it Dundas doing the email interpretation or our mail server? Dundas Email also connects to our DNS server - can you elaborate on how this works??<br><br>thanks in advance ... </p> http://stackoverflow.com/questions/847581/how-to-get-dynamic-intervals-in-dundas-microsoft-chart-controls-for-winforms 0 How to get dynamic intervals in Dundas / Microsoft Chart Controls for WinForms? Geir-Tore Lindsve 2009-05-11T10:43:57Z 2009-05-11T10:43:57Z <p>Hi,</p> <p>I'm using the Microsoft Chart Controls for .NET 3.5, and struggles with getting the chart control to support window/control resizing.</p> <p>I have graphs where the X value is dates, and want the chart to display the maximum available of intervals/labels on the chart axis when I resize the window.</p> <p>The closes I've come is to call this from the PrePaint event:</p> <pre><code>double interval = chart.Series[0].Points.Count / ((double)chart.Width / 90); foreach (var area in chart.ChartAreas.Where(ca =&gt; ca.Visible)) { area.AxisX.Interval = interval; } </code></pre> <p>This makes the intervals and labels fit perfectly along the X axis, but the dates are not shown correctly. This first label seems to be right (some date in 2008), but the rest of the labels along the axis are displayed as some date in 1900 instead.</p> <p>Anyone know the preferred way of doing this?</p> http://stackoverflow.com/questions/805022/ssrs-dundas-custom-code-not-executing 1 SSRS Dundas Custom Code Not Executing Nathan Reed 2009-04-30T01:31:23Z 2009-04-30T11:40:01Z <p>I have a Dundas chart being used in a SSRS Report with some custom code in the PostInitilize Event that looks something like this:</p> <pre><code>foreach(CustomLabel curLabel in chartObj.ChartAreas[0].AxisY.CustomLabels) { curLabel.GridTick = GridTick.None; curLabel.Text = Convert.ToString(Convert.ToInt32(curLabel.Text) - 10); } </code></pre> <p>Its takes each axis label and reduces the value by 10.</p> <p>This works great on my machine, it even works fine on the production server in report viewer. But when this report is run as a subscription, the code fails to run. The report generates just fine but the axis labels are unchanged.</p> <p>How could this be happening? What is different about running a report as a subscription?</p> http://stackoverflow.com/questions/796155/adjusting-the-number-of-x-intervals-in-microsoft-chart-controls 0 Adjusting the number of X intervals in Microsoft Chart Controls Geir-Tore Lindsve 2009-04-28T03:55:45Z 2009-04-28T05:39:12Z <p>I'm using the Microsoft Chart Controls and databinds it like this:</p> <pre><code>chart1.Series["Default"].Points.DataBindXY(events.Dates, events.Values); //where // events.Dates is IList&lt;DateTime&gt; // events.Values is Double </code></pre> <p>I'm having some issues getting the chart/chartarea to display a reasonable amount of intervals though. It works fine on Auto as long as I don't explicitly set the min/max values for the X-axis, but the number of intervals seems to be the same as number of Dates when setting min/max as:</p> <pre><code>chart1.ChartAreas["Default"].AxisX.Minimum = events.Dates.FirstOrDefault().ToOADate(); chart1.ChartAreas["Default"].AxisX.Maximum = events.Dates.LastOrDefault().ToOADate(); </code></pre> <p>I need to set the min/max values since it seems like they are not automatically set correctly as the are reported way wrong during PostPaint and that makes it impossible to find the right position along the X-axis by using:</p> <pre><code>float posX = (float) chart1.ChartAreas["Default"].AxisX.ValueToPixelPosition(dataPoint.XValue); </code></pre> <p>Any ideas on how to correctly set the amount of intervals along the X-axis (or even, how to correctly get the pixelposition without setting max/min values) are very appreciated.</p> <p><strong>EDIT:</strong> Seems I got this wrong. My X-axis is XValueIndexed and thus the X values are indexes instead of the actual values and I have to tune the PostPaint event to cope with this instead of the actual values.</p> http://stackoverflow.com/questions/469864/updating-a-gridview-based-on-dundas-chart-callback 0 Updating a gridview based on dundas chart callback Daud 2009-01-22T16:35:06Z 2009-03-22T16:08:30Z <p>I have a dundas pie chart which when clicked issues a client callback which updates another chart associated with it. Basically its like a drill down thing. I also want to update my gridview based on the user's selection of the pie. But since the update of chart is being done using dundas client callback I'm unable to rebind my Gridview. Is there any way to do it? . </p> http://stackoverflow.com/questions/642912/asp-dundas-mailer-subject-encoding-problem 0 Asp Dundas.Mailer subject encoding problem Sander Versluys 2009-03-13T14:15:26Z 2009-03-13T14:15:26Z <p>I'm using the Dundas.Mailer component to send e-mails. The user can send e-mails from within the application.</p> <p>I'm using codepage 1252 for western Europa, as users use french with a lot of accents and such.</p> <p>The body of the e-mail is just fine, but the subject does not get handled properly, and non standard ascii characters get messed up.</p> <p>Anybody experience with this?</p> http://stackoverflow.com/questions/481730/cell-format-strings-for-reporting-services-dundas-charts 0 Cell Format Strings for Reporting Services/Dundas Charts jeffspost 2009-01-26T22:57:31Z 2009-02-02T12:27:01Z <p>Reporting services use format strings to auto format cell data. For example "c2" formats a cell to be displayed as currency with a decimal precision of 2.</p> <p>Does anyone know where I'd find a comprehensive list off all the different formats available?</p>