QCChart2DWAFAQs

Frequently Asked Questions

 

FAQs

  1. Is the QCChart2D for Windows Apps software backward compatible with the .Net Forms version of QCChart2D?
  2. How do you create a chart with multiple coordinate systems and axes?
  3. Can I add new axes, text objects, plot objects, and images to a chart after it is already displayed; or must I create a new chart from scratch taking into account the additional objects?
  4. How do you zoom charts that use multiple coordinate systems?
  5. How do you select a chart object and create a dialog panel that permits editing of that objects properties?
  6. How do you handle missing data points in a chart?
  7. How do you update a chart in real-time?
  8. How do I prevent flicker when updating my charts on real-time?
  9. How do you implement drill down, or data tool tips in a chart?
  10. I do not want to my graph to auto-scale. How do I setup the graph axes for a specific range?
  11. How do I update my data, and auto-rescale the chart scales and axes to reflect the new data, after it has already been drawn?
  12. When I use the auto-scale and auto-axis routines my semi-log chart has the logarithmic axis scaled using powers of 10 (1, 10,100, 1000, etc.) as the starting and ending values, or as the major tick interval for labeling. How do I make my log graphs start at 20 and end at 50,000, with major tick marks at 20, 200, 2000 and 20000?
  13. How do I create and use custom, multi-line string labels as the axis labels for my graph?
  14. How do I place more than one graph in a view?
  15. How do I use your software to generate GIF files?
  16. Sometimes the major tick marks of an axis are missing the associated tick mark label ?
  17. How do I change the order the chart objects are drawn? For example, I want one of my grid objects to be drawn under the charts line plot objects, and another grid object to be drawn top of the charts line plot objects.
  18. How to I use a scrollbar object to control horizontal scrolling of the data in my chart?
  19. I am trying to plot 100,000,000 data points and it takes too long to draw the graph. What is wrong with the software and what can I do to make it faster?
  20. How do I get data from my database into a chart?
  21. How do I use this charting software to generate chart images “on-the-fly”? 

 

  1. Is the QCChart2D for Windows Apps software backward compatible with the .Net Forms version of QCChart2D ?

Yes, the QCChart2D for Windows Apps software is generally source code compatible with earlier Forms based QCChart2D for .Net. There is a comprehensive list of changes you will need to make to your source at the end of Chapter 2. You should have no problems recreating any charts that you created using our older .Net forms software.

  1. How do you create a chart with multiple coordinate systems and axes?

A chart can have as many coordinate systems and axes as you want. A single coordinate system can have one or more x- and/or y-axes. The most common use for multiple axes in a single coordinate system is to place y-axes on both the left and the right sides of a chart, and x-axes above and below. The left and bottom axes usually have numeric or date labels, and the top and right axes just tick marks. This does not have to be the case though; every axis can have axis labels if you want. In general, the axis position in the chart is determined by its intercept. The default value of the intercept is set to the minimums of the coordinate system that the axis is placed in. Adjusting the intercept using the SetAxisIntercept method changes the position of the axis in the chart. The axis intercept value is set using units of the coordinate system at right angles to the axis. The example below, extracted from the LineFill example, places y-axes on both the left and right of the chart.

[C#]

TimeAxis xAxis = new TimeAxis(pTransform1);

chartVu.AddChartObject(xAxis);

TimeAxis xAxis = new TimeAxis(pTransform1);

xAxis.SetColor(Colors.White);

chartVu.AddChartObject(xAxis);

LinearAxis yAxis = new LinearAxis(pTransform1, ChartObj.Y_AXIS);

// Default places y-axis at miniumum of x-coordinate scale

yAxis.SetColor(Colors.White);

chartVu.AddChartObject(yAxis);

LinearAxis yAxis2 = new LinearAxis(pTransform1, ChartObj.Y_AXIS);

yAxis2.SetAxisIntercept(xAxis.GetAxisMax());

yAxis2.SetAxisTickDir(ChartObj.AXIS_MAX);

yAxis2.SetColor(Colors.White);

chartVu.AddChartObject(yAxis2);

The other common reason to have multiple axes in a chart is to delineate the simultaneous use of different coordinate systems in the chart. In this case each coordinate system has an x- and/or y-axis to differentiate it from the other coordinate systems. When the different coordinate systems are created, they usually overlay the same area of the chart. The default positioning of the axes for each coordinate system will all overlay one another, making the axes unreadable. In the y-axis case you will want to offset additional axes to the left, or to the right of the default axis position, using the SetAxisIntecept method. When using the SetAxisInterceptmethod, make sure you specify the position using the units of the coordinate system scale at right angles to the axis. Specify an intercept value outside of the normal scale range to offset the axes so that they do not overlap. The example below, extracted from the MultipleAxes.MultiAxesChart example, creates one x-axis, common to all of the charts because the x-scaling for all of the coordinate systems match, and five y-axes, one for each of the five different coordinate systems.

[C#]

CartesianCoordinates pTransform1;

CartesianCoordinates pTransform2;

CartesianCoordinates pTransform3;

CartesianCoordinates pTransform4;

CartesianCoordinates pTransform5;

.

. // Initialize datasets, coordinate system ranges

.

// The x-scale range for pTransform1 to pTransform5 are all the same, 0 – 100

// The y-scale range for pTransform1 to pTransform5 are all different

// The plotting area for each pTransform is indentical, leaving a large open

// to the left for extra axes.

pTransform1.SetGraphBorderDiagonal(0.35, .15, .9, 0.65) ;

pTransform2.SetGraphBorderDiagonal(0.35, .15, .9, 0.65) ;

pTransform3.SetGraphBorderDiagonal(0.35, .15, .9, 0.65) ;

pTransform4.SetGraphBorderDiagonal(0.35, .15, .9, 0.65) ;

pTransform5.SetGraphBorderDiagonal(0.35, .15, .9, 0.65) ;

ChartAttribute attrib1 = new ChartAttribute (Colors.Blue, 2,ChartObj.LS_SOLID);

ChartAttribute attrib2 = new ChartAttribute (Colors.Red, 2,ChartObj.LS_SOLID);

ChartAttribute attrib3 = new ChartAttribute (Colors.Green, 2,ChartObj.LS_SOLID);

ChartAttribute attrib4 = new ChartAttribute (Colors.Orange, 2,ChartObj.LS_SOLID);

ChartAttribute attrib5 = new ChartAttribute (Colors.Magenta, 2,ChartObj.LS_SOLID);

xAxis = new LinearAxis(pTransform1, ChartObj.X_AXIS);

xAxis.SetLineWidth(2);

chartVu.AddChartObject(xAxis);

yAxis1 = new LinearAxis(pTransform1, ChartObj.Y_AXIS);

yAxis1.SetAxisIntercept(0.0);

yAxis1.SetChartObjAttributes(attrib1); // axis color matches line color

chartVu.AddChartObject(yAxis1);

yAxis2 = new LinearAxis(pTransform2, ChartObj.Y_AXIS);

yAxis2.SetAxisIntercept(-18);

yAxis2.SetChartObjAttributes(attrib2); // axis color matches line color

chartVu.AddChartObject(yAxis2);

yAxis3 = new LinearAxis(pTransform3, ChartObj.Y_AXIS);

yAxis3.SetAxisIntercept(-35);

yAxis3.SetChartObjAttributes(attrib3); // axis color matches line color

chartVu.AddChartObject(yAxis3);

yAxis4 = new LinearAxis(pTransform4, ChartObj.Y_AXIS);

yAxis4.SetAxisIntercept(-52);

yAxis4.SetChartObjAttributes(attrib4); // axis color matches line color

chartVu.AddChartObject(yAxis4);

yAxis5 = new LinearAxis(pTransform5, ChartObj.Y_AXIS);

yAxis5.SetAxisIntercept(xAxis.GetAxisMax());

yAxis5.SetAxisTickDir(ChartObj.AXIS_MAX);

yAxis5.SetChartObjAttributes(attrib5); // axis color matches line color

chartVu.AddChartObject(yAxis5);

NumericAxisLabels xAxisLab = new NumericAxisLabels(xAxis);

xAxisLab.SetTextFont(theFont);

chartVu.AddChartObject(xAxisLab);

NumericAxisLabels yAxisLab1 = new NumericAxisLabels(yAxis1);

yAxisLab1.SetTextFont(theFont);

yAxisLab1.SetAxisLabelsFormat(ChartObj.BUSINESSFORMAT);

chartVu.AddChartObject(yAxisLab1);

NumericAxisLabels yAxisLab2 = new NumericAxisLabels(yAxis2);

yAxisLab2.SetTextFont(theFont);

chartVu.AddChartObject(yAxisLab2);

NumericAxisLabels yAxisLab3 = new NumericAxisLabels(yAxis3);

yAxisLab3.SetTextFont(theFont);

chartVu.AddChartObject(yAxisLab3);

NumericAxisLabels yAxisLab4 = new NumericAxisLabels(yAxis4);

yAxisLab4.SetTextFont(theFont);

chartVu.AddChartObject(yAxisLab4);

NumericAxisLabels yAxisLab5 = new NumericAxisLabels(yAxis5);

yAxisLab5.SetTextFont(theFont);

chartVu.AddChartObject(yAxisLab5);

ChartFont axisTitleFont = new ChartFont(“Microsoft Sans Serif”, 10, FontStyle.Normal, FontWeights.Bold);

AxisTitle xaxistitle = new AxisTitle( xAxis, axisTitleFont, “Event Partition”);

chartVu.AddChartObject(xaxistitle);

ChartGrid xgrid = new ChartGrid(xAxis, yAxis1,ChartObj.X_AXIS, ChartObj.GRID_MAJOR);

chartVu.AddChartObject(xgrid);

SimpleLinePlot thePlot1 = new SimpleLinePlot(pTransform1, Dataset1, attrib1);

chartVu.AddChartObject(thePlot1);

SimpleLinePlot thePlot2 = new SimpleLinePlot(pTransform2, Dataset2, attrib2);

chartVu.AddChartObject(thePlot2);

SimpleLinePlot thePlot3 = new SimpleLinePlot(pTransform3, Dataset3, attrib3);

chartVu.AddChartObject(thePlot3);

SimpleLinePlot thePlot4 = new SimpleLinePlot(pTransform4, Dataset4, attrib4);

chartVu.AddChartObject(thePlot4);

SimpleLinePlot thePlot5 = new SimpleLinePlot(pTransform5, Dataset5, attrib5);

chartVu.AddChartObject(thePlot5);

  1. Can I add new axes, text objects, plot objects, and images to a chart after it is already displayed; or must I create a new chart from scratch taking into account the additional objects?

There are two ways to add new objects to a chart. The first way is to create all objects when the chart is initially created, but disable the ones that you do not want to show up when the chart is initially rendered. Enable the objects when you want them to show up. Use the chart objects SetChartObjEnable method to enable/disable the object. This is useful if you are creating an animated chart where you want the chart to sequence through a predefined series of steps. The second way you add new chart objects to the ChartView using the ChartView.AddChartObject method. In both cases you need to call the ChartView.UpdateDraw() method after any changes are made.

The example below, extracted from the CustomChartDataCursor class, creates a new Marker object and NumericLabel object each time a mouse button clicked.

[C#]

Marker amarker = new Marker(GetChartObjScale(), MARKER_BOX,

nearestPoint.GetX(), nearestPoint.GetY(), 10.0, PHYS_POS);

chartVu.AddChartObject(amarker);

rNumericLabelCntr += 1.0;

// Add a numeric label the identifies the marker

pointLabel = new NumericLabel(GetChartObjScale(),

textCoordsFont, rNumericLabelCntr, nearestPoint.GetX(),

nearestPoint.GetY(), PHYS_POS, DECIMALFORMAT, 0);

// Nudge text to the right and up so that it does not write over marker

pointLabel.SetTextNudge(5,-5);

chartVu.AddChartObject(pointLabel);

chartVu.UpdateDraw();

  1. How do you zoom charts that use multiple coordinate systems?

The ChartZoom class will zoom one or more simultaneous coordinate systems. The example program SuperZoom zooms a chart that has one x-axis and five y-axes. Use the ChartZoom constructor that accepts an array of coordinate system objects.

 

  1. How do you select a chart object and create a dialog panel that permits editing of that objects properties?

The QCChart2D for Windows Apps library does not include predefined dialogs for editing chart object properties. The look, feel and details of such dialogs are application specific and it is up to the application programmer to provide these. The property editor tables common to many packages are designed to be used by developers, not end users.

You can add your own dialogs that edit the characteristics important to your end users. If you want to select the chart object by pressing a mouse button while the cursor is on the object, use the FindObj class. Override the OnMouseDown method and invoke the appropriate dialog panel there. The following example is extracted from the EditChartExample example program.

[C#]

public class SimpleLineAndScatterPlot

{

ChartView gWG;

LinearAxis xAxis = null;

LinearAxis yAxis = null;

SimpleLinePlot thePlot2 = null;

SimpleScatterPlot thePlot1 = null;

SimpleScatterPlot thePlot3 = null;

class CustomFindObj : FindObj

{

SimpleLineAndScatterPlot charttObj = null;

public CustomFindObj(SimpleLineAndScatterPlot component)

: base(component.gWG)

{

charttObj = component;

}

public void InvokeLineDialog(GraphObj graphobj)

{

charttObj.LineEdit_Click(graphobj);

}

public override void OnMouseDown(PointerRoutedEventArgs mouseevent)

{

base.OnMouseDown(mouseevent);

GraphObj selectedObj = GetSelectedObject();

if (selectedObj != null)

{

// Check for a specific object

if ((selectedObj == charttObj.xAxis) ||

(selectedObj == charttObj.yAxis) ||

// or check for for all classes inheriting from a specific type

(ChartSupport.IsKindOf(selectedObj, “SimplePlot”)))

InvokeLineDialog(selectedObj);

}

}

}

public async void LineEdit_Click(GraphObj graphobj)

{

EditLineDialog editlinedialog = new EditLineDialog()

{

CurrentLineWidth = (int)graphobj.ChartObjAttributes.LineWidth,

CurrentColor = graphobj.ChartObjAttributes.PrimaryColor

};

ContentDialogResult dlgresult = await editlinedialog.ShowAsync();

if (dlgresult == ContentDialogResult.Primary)

{

// line width

graphobj.ChartObjAttributes.LineWidth = editlinedialog.CurrentLineWidth;

// line color

graphobj.ChartObjAttributes.PrimaryColor = editlinedialog.CurrentColor;

// Fill symbol if a scatter plot type

if (ChartSupport.IsKindOf(graphobj, “SimpleScatterPlot”))

graphobj.ChartObjAttributes.FillColor = editlinedialog.CurrentColor;

gWG.UpdateDraw();

}

}

The EditLineDialog class need to be written by the programmer. Sample classes are found in the EditChartExample example. This example reveals two strange weaknesses of UWP; there is no common control color picker dialog, and no common font chooser dialog. We use a simple scroll list box for to choose a color.

 

  1. How do you handle missing data points in a chart?

There are two ways to handle missing, or bad data. The first is to mark the data point in the dataset invalid, using the datasets SetValidData method. The second is to set the x- and/or y- value of the bad data point to the designated bad data value, ChartObj.rBadDataValue. Currently this value is set equal to the value of System.Double.MaxValue. Either method will prevent the data point from being displayed in a chart. If the bad data value is part of a line plot, a gap will appear in the line plot at that point. Bad data points are not deleted from a dataset.

 

  1. How do you update a chart in real-time?

In general, real-time updates involve adding new objects to a chart, or modifying existing objects that are already in the chart. Once the object is added or changed, call the ChartView.UpdateDraw() method to force the chart to update using the new values. Objects can be added or modified based on some external event, or in response to a timer event created using System.Windows.Threading.DispatcherTimer. Make all changes for a given event and call the ChartView.UpdateDrawmethod once. The position of most GraphObj derived objects is set or modified using one of the objects SetLocation methods. New data points can be added to an existing dataset using one of the datasets AddDataPoint, AddTimeDataPoint, AddGroupDataPoints or AddTimeGroupDataPoints methods. ChartPlot derived objects that use datasets will update to reflect the new values when the ChartView.UpdateDraw method is called. If the coordinates of the new data points are outside of the x- and y-limits of the current coordinate system it may be necessary to rescale the coordinate system so that the new points show up; otherwise the new data points will be clipped. The new scale values can be set explicitly, or calculated using one of the auto-scale methods. The example program DynamicCharts demonstrates various ways to update charts in real-time.

If you want to change points in an existing dataset, but not the size of the dataset, call the datasets appropriate SetXDataValue, SetYDataValue, or SetDataPointmethods. The dataset has its own copy of the data so you must change these values, not the original values you used to initialize the dataset. If you plan to change every value in the dataset, you can do that point by point, or create a new dataset and swap that in for the old dataset using the plot objects SetDataset or SetGroupDataset method. Call the ChartView.UpdateDraw method to force the chart to update using the new values.

 

  1. How do I prevent flicker when updating my charts on real-time?

In general, the retained graphics system of UWP is always doubled buffered does not produce flicker.

 

  1. How do you implement drill down, or data tool tips in a chart?

Implementing drill down or tool tips consists of three major parts:

bullet Trapping a mouse event and determining the mouse cursor position in device and physical coordinates.
bullet Identifying the chart object that intersects the mouse event.
bullet Displaying appropriate information about the chart object.

There are many classes that aid in one or more of these functions. The MouseListener class will trap a mouse event in the chart view. The FindObj class will filter and return the chart object, if any, that intersects the mouse cursor when a mouse button is pressed. The MoveObj class will filter, select and move a chart object as the mouse is dragged across the chart. The DataToolTip class will find the data point in a chart nearest the mouse cursor and display xy information about the data point as a popup ChartText display. The DataToolTip can also be customized for the display of custom information about the selected data point. It only takes a few lines to add a simple y-value tool tip to an existing chart.

[C#]

DataToolTip datatooltip = new DataToolTip(chartVu);

datatooltip.SetEnable(true);

chartVu.SetCurrentMouseListener(datatooltip);

[Visual Basic]

Dim datatooltip As New DataToolTip(chartVu)

datatooltip.SetEnable(True)

chartVu.SetCurrentMouseListener(datatooltip)

Most all of the example programs have charts which use data tool tips. See the SimpleLinePlots examples: LineFill, LinePlotSegments, and SimpleLineAndScatterPlot. Also see the Bargraphs examples: SimpleBars, DoubleBarPlot, HistogramBars, GroupBargraphs, and FloatingBars.

 

  1. I do not want to my graph to auto-scale. How do I setup the graph axes for a specific range?

Auto-scaling has two parts. The first is the auto-scaling of the coordinate system based on one or more datasets. The second part is the auto-scaling of the axes that reside in the coordinate system. Manually scale the coordinate system and axes by calling the appropriate constructors. For example:

[C#]

ChartCalendar xMin = new ChartCalendar(1996, ChartObj.FEBRUARY, 5);

ChartCalendar xMax = new ChartCalendar(2002, ChartObj.JANUARY, 5);

double yMin = 0;

double yMax = 105;

TimeCoordinates simpleTimeScale;

simpleTimeScale = new TimeCoordinates(xMin, yMin, xMax, yMax);

// Create the time axis (x-axis is assumed)

TimeAxis xAxis = new TimeAxis(simpleTimeScale);

// Create the linear y-axis

LinearAxis yAxis = new LinearAxis(simpleTimeScale, ChartObj.Y_AXIS);

// Create the ChartView object to place graph objects in.

ChartView chartVu = new ChartView();

// Add the x- and y-axes to the chartVu object

chartVu.AddChartObject(xAxis);

chartVu.AddChartObject(yAxis);

 

The documentation for the various coordinate system and axis classes includes examples of manual scaling.

 

  1. How do I update my data, and auto-rescale the chart scales and axes to reflect the new data, after it has already been drawn?

Updating data was discussed in FAQ # 6. If you want the chart to rescale based on the new data, call the appropriate coordinate systems auto-scale method, followed by the auto-axis methods of all related axes. Then call the ChartView.UpdateDraw method. For example:

[C#]

// Create the ChartView object to place graph objects in.

TimeSimpleDataset Dataset1 = new TimeSimpleDataset(“Sales”,x1,y1);

TimeCoordinates simpleTimeCoordinates = new TimeCoordinates();

simpleTimeCoordinates.AutoScale(Dataset1,

ChartObj.AUTOAXES_FAR , ChartObj.AUTOAXES_FAR);

ChartView chartVu = new ChartView();

// Create the time axis (x-axis is assumed)

TimeAxis xAxis = new TimeAxis(simpleTimeCoordinates);

// Create the linear y-axis

LinearAxis yAxis = new LinearAxis( simpleTimeCoordinates, ChartObj.Y_AXIS);

.

.

.

// The following code would be in the code handling the rescale event

// Rescale chart based on a modified Dataset1 datset

simpleTimeCoordinates.AutoScale(Dataset1,

ChartObj.AUTOAXES_FAR , ChartObj.AUTOAXES_FAR);

xAxis.CalcAutoAxis();

yAxis.CalcAutoAxis();

// Redraw the chart using the rescaled coordinate system and axes

chartVu.UpdateDraw();

 

 

  1. When I use the auto-scale and auto-axis routines my semi-log chart has the log axis scaled using powers of 10 (1, 10,100, 1000, etc.) as the starting and ending values, or as the major tick interval for labeling. How do I make my log graphs start at 20 and end at 50,000, with major tick marks at 20, 200, 2000 and 20000?

The auto-scale routines for logarithmic coordinate systems will always select a power of 10 for the minimum and maximum value of the scale. You can use the auto-scale routine and then override the minimum and/or maximum values for the logarithmic scale. The default LogAxis constructor will pick up on the minimum of the coordinate system and use that as the axis tick mark origin. Or you can leave the coordinate system unchanged, and change the starting point of the axis tick marks using the axis SetAxisTickOrigin method. The example below is derived from the Logarithmic example code.

[C#]

GroupDataset Dataset1 = new GroupDataset(“First”,x1,y1);

CartesianCoordinates pTransform1 = new CartesianCoordinates(ChartObj.LOG_SCALE,

ChartObj.LINEAR_SCALE);

pTransform1.AutoScale(Dataset1, ChartObj.AUTOAXES_FAR, ChartObj.AUTOAXES_FAR);

pTransform1.SetScaleStartX(20); // Force start of scale at 20, AutoScale will

// always choose a power of 10 decade.

LogAxis xAxis = new LogAxis(pTransform1, ChartObj.X_AXIS);

xAxis.SetAxisTickOrigin(20);

chartVu.AddChartObject(xAxis);

 

  1. How do I create and use custom, multi-line string labels as the axis labels for my graph?

The StringAxisLabels class should be used to create multi-line axis labels. Insert the “\n” new line character to add additional lines to each string used to define the string axis labels. The example below is from the AxisLabels example program.

[C#]

String []xstringlabels =

{

“”,

“Western”+”\n”+”Sales”+”\n”+”Region”,

“Eastern”+”\n”+”Sales”+”\n”+”Region”,

“Southern”+”\n”+”Sales”+”\n”+”Region”,

“Northern”+”\n”+”Sales”+”\n”+”Region”};

StringAxisLabels xAxisLab5 = new StringAxisLabels(xAxis5);

xAxisLab5.SetAxisLabelsStrings(xstringlabels,5);

xAxisLab5.SetTextFont(graph5Font);

chartVu.AddChartObject(xAxisLab5);

  1. How do I place more than one graph in a view?

One way to create multiple charts is to create multiple instances of the ChartView class and add each ChartView object to a container object such as a Window or UserControl. The UWP layout manager is used to manage the position and size of each ChartView. Another way is to place multiple charts in the same ChartViewobject. This makes it easier to guarantee alignment between the axes of separate graphs. The trick to doing this is to create separate coordinate system objects (CartesianCoordinates, TimeCoordinates or PolarCoordinates) for each chart, and to position the plot area of each coordinate system so that they do not overlap. Use one of the coordinate systems SetGraphBorder… methods. Many of the examples use this technique, including Bargraphs.GroupBargraphs, Bargraphs.DoubleBarPlot, FinancialExamples.OHLCChart, FinancialExamples.FinOptions, DynamicCharts.DynPieChart, PieCharts.PieAndLineChart and PieCharts.PieAndBarChart. The example below was extracted from the FinancialExamples.OHLCChart class.

[C#]

pTransform1 = new TimeCoordinates();

pTransform1.SetGraphBorderDiagonal(0.1, .15, .90, 0.6) ;

pTransform2 = new TimeCoordinates();

pTransform2.SetGraphBorderDiagonal(0.1, .7, .90, 0.875) ;

 

  1. How do I use your software to generate GIF files?

Unlike the JPEG image file format, the GIF file format uses a proprietary data compression algorithm known as LZW. The patent on the LZW compression algorithm is owned by the large computer/data processing company Unisys. Programmers who write commercial applications that use this file format may be subject to paying Unisys royalties. The BufferedImage class will out GIF files using the standard .Net image encoder.

According to Wikipedia, all of the patents associated with GIF file format have expired, and you are free to use that file format in your work.

  1. Sometimes the major tick marks of an axis are missing the associated tick mark label ?

The axis labeling routines are quite intelligent. Before the label is drawn at its calculated position, the software does a check to see if the bounding box of the new axis label intersects the bounding box of the previous axis label. If the new label is going to overlap the previous label, the label is skipped. You can override this default behavior by calling the objects SetOverlapLabelMode method.

SetOverlapLabelMode (ChartObj.OVERLAP_LABEL_DRAW);

Another option, for horizontal axes only, is to stagger the tick mark labels. A stagger automatically alternates the line on which the tick mark label is placed.

SetOverlapLabelMode (ChartObj.OVERLAP_LABEL_STAGGER);

 

  1. How do I change the order the chart objects are drawn? For example, I want one of my grid objects to be drawn under the charts line plot objects, and another grid object to be drawn top of the charts line plot objects.

There are two ordering methods used to render chart objects. The first method renders the objects in order, as added to the ChartView object. Objects added to the view last are drawn on top of objects added first. The second method renders the objects according to their z-order. Objects with the lowest z-order values are rendered first. Objects with equal z-order values are rendered in the ordered they are added to the ChartView object. The second method (z-order rendering) is the default method of object rendering used by the ChartView class. This default behavior can be changed by call the ChartView.SetZOrderSortEnable(false) method.

You can change the default z-order value on an object-by-object basis. Call the GraphObj.SetZOrder method to change the z-order for any given object.

See the section in the manual titled Rendering Order of GraphObj Objects for information about the default z-values for all chart objects

The example below sets the z-order value of grid1 to something less than the default value (50) of ChartPlot objects, and the z-order value of grid2 to something greater than the default value.

[C#]

ChartView chartVu = new ChartView();

.

.

.

ChartGrid grid1 = new ChartGrid(xAxis, yAxis, ChartObj.Y_AXIS, ChartObj.GRID_MAJOR);

grid1.SetZOrder(40); // This is actually the default value for the grid z-order

chartVu.AddChartObject(grid1);

ChartGrid grid2 = new ChartGrid(xAxis, yAxis, ChartObj.Y_AXIS, ChartObj.GRID_MINOR);

grid2.SetZOder(150); // ChartGrid is drawn after ChartPlot objects

// which have default z-value of 50

chartVu.AddChartObject(grid2);

 

 

  1. How to I use a ScrollBar object to control horizontal scrolling of the data in my chart?

The ChartView class has two built-in scroll bars you can use in your program to control chart scrolling. The example program FormControlExamples.LinePlotScrollBar uses two scroll bars, a horizontal scroll bar to control scrolling of the x-axis, and a vertical scroll bar that controls the magnitude of the y-axis. You need to enable the HScrollBar1 and VScrollBar1 scrollbars in the ChartView. Hook up the the hScrollBar1_Scroll and vScrollBar1_Scroll event listeners to the Scroll event of each scroll bar.

[C#]

public void UpdateXScaleAndAxes(int index)

{

int startindex = index;

pTransform1.SetScaleStartX( (double) startindex);

pTransform1.SetScaleStopX( (double) (startindex + 100));

xAxis.CalcAutoAxis();

yAxis.CalcAutoAxis();

xAxisLab.CalcAutoAxisLabels();

yAxisLab.CalcAutoAxisLabels();

chartVu.UpdateDraw();

}

public void UpdateYScaleAndAxes(int index)

{

int startindex = index;

pTransform1.SetScaleStartY( (double) -startindex);

pTransform1.SetScaleStopY( (double) startindex);

xAxis.CalcAutoAxis();

yAxis.CalcAutoAxis();

xAxisLab.CalcAutoAxisLabels();

yAxisLab.CalcAutoAxisLabels();

chartVu.UpdateDraw();

}

private void InitializeChart(ChartView chartvu)

{

.

.

.

chartVu.EnableHScrollBar1 = true;

chartVu.EnableVScrollBar1 = true;

chartVu.HScrollBar1.Minimum = 0;

chartVu.HScrollBar1.Maximum = 200;

chartVu.HScrollBar1.Value = 0;

chartVu.HScrollBar1.SmallChange = 2;

chartVu.HScrollBar1.LargeChange = 20;

chartVu.VScrollBar1.Minimum = 0;

chartVu.VScrollBar1.Maximum = 100;

chartVu.VScrollBar1.Value = 50;

chartVu.VScrollBar1.SmallChange = 1;

chartVu.VScrollBar1.LargeChange = 5;

chartVu.HScrollBar1.Scroll += hScrollBar1_Scroll;

chartVu.VScrollBar1.Scroll += vScrollBar1_Scroll;

UpdateYScaleAndAxes((int) chartVu.VScrollBar1.Value);

UpdateXScaleAndAxes((int) chartVu.HScrollBar1.Value);

}

internal void hScrollBar1_Scroll(object sender, System.Windows.Controls.Primitives.ScrollEventArgs e)

{

UpdateXScaleAndAxes((int) e.NewValue);

}

internal void vScrollBar1_Scroll(object sender, System.Windows.Controls.Primitives.ScrollEventArgs e)

{

UpdateYScaleAndAxes((int)e.NewValue);

}

 

 

There are many other examples of Form components interacting with charts. The ContourPlots.ContourLinePlot example program uses a CheckBox object to specify which contours are to be displayed. In the MultipleAxes.OHLCChart example a Scrollbar controls the time axis of a stock market OHLC chart. The MultiAxes.MultiAxesChart example uses Button objects to select the x-axis range.

 

  1. I am trying to plot 100,000,000 data points and it takes too long to draw the graph. What is wrong with the software and what can I do to make it faster?

The software runs as fast as we can make it. We do not have any hidden switches that will speed up the software. What you need to do is to step back and think about the best way to display your data.

A fundamental issue that many programmers fail to consider is the relationship between the resolution of the rasterized screen image of the plot and the resolution of the data. A typical chart image will have 500-1000 pixels as the horizontal resolution of the plotting area. This would imply that in the 100M data point example above, every horizontal pixel would represent 50K to 100K data points. Obviously this is a terrible mismatch. In fact it is a bad match for datasets that have more than a couple of thousands points.

So what you do is compress the data before it is displayed. Take the 100M data points and compress them down to 2K data points. The data compression can take several forms. You can take an average of every N points. The resulting dataset will be reduced by a factor of N. You can also find the sum for every N points, the minimum value of every N points, the maximum of every N points, or both the minimum and maximum of every 2N points. The last compression method, minimum and maximum, will always capture any minimums and maximum in the data. The result is that a 2000 point compressed dataset, where there are at least two data points per pixel of horizontal resolution, will look just like the 100,000,000 point dataset, only display hundreds of times faster. The Datset classes all include compression methods (SimpleDataset.CompressSimpleDataset, GroupDataset.CompressGroupDataset, TimeSimpleDataset.CompressTimeSimpleDataset and TimeGroupDataset.CompressTimeGroupDataset, TimeGroupDataset.CompressTimeFieldSimpleDataset, TimeGroupDataset.CompressTimeFieldGroupDataset) that operate on the existing dataset and return a new, compressed dataset. The CompressTimeFieldSimpleData and CompressTimeFieldGroupDataset are particular useful because they do not use a fixed sample size of N, instead they compress data so that adjacent time values are an increment of a specific time field (ChartObj.DAY_OF_YEAR, ChartObj.WEEK_OF_YEAR, ChartObj.MONTH, ChartObj.Year). Compressing data by month and year obviously requires a varying sample size.

Once created, connect the compressed dataset to the ChartPlot object used to display the dataset.

[C#]

nNumPnts = 1000000;

TimeSimpleDataset RawDataset = new

TimeSimpleDataset(“Raw”, xtimedata, ydata,nNumPnts);

int compressXmode = ChartObj.DATACOMRESS_AVERAGE;

int compressYmode = ChartObj.DATACOMRESS_MINMAX;

int compressTimeField = Calendar.MONTH;

TimeSimpleDataset CompressedDataset =

RawDataset.CompressTimeFileSimpleData( compressXmode,

compressYmode,

compressTimeField,

0, nNumPnts,”Compressed”);

 

  1. How do I get data from my database into a chart?

The real question is: How do you get data from your database into a simple .Net program, storing sequential data values in data array variables. This is up to you and is independent of the charting software. We recommend that you use the SQL database classes that are part of .Net and study the documentation provide by Microsoft and other sources, such as the O’Reilly programming books. Once you can read individual data elements of your data base it is a trivial matter to place the numeric and calendar data into simple .Net array variables and from there plot the data.

  1. How do I use this charting software to generate chart images “on-the-fly” from a server?

The BufferedImage class creates chart images independent of any physical display context. The BufferedImage class uses standard .Net encoders to generate image files. You can use this image as an image object in an HTML page.