BubbleChart

This chart is a variant of the standard ScatterPlot with the size of the markers used to show an extra dimension in the data. The third argument gives the required marker area (typically the number of incidents recorded at a certain location) and all the markers are automatically scaled to cover the range of areas given.

Any marker may be used here (including user-defined markers) but simple solid circles are probably best.

BubbleChart
SharpPlot sp = new SharpPlot();
sp.SetMarkers(MarkerStyle.Bullet);
ydata = new int[] {190,270,310,120,190,230};
xdata = new int[] {17,31,29,14,16,24};
count = new int[] {12,65,77,7,9,112};
sp.ScatterPlotStyle = ScatterPlotStyles.ExplodeAxes|ScatterPlotStyles.GridLines;
sp.DrawBubbleChart(ydata,xdata,count);

See also

BubbleChart1 BubbleChart2 BubbleChart3 BubbleChart4