kenny Watts - 2012-09-14

I have three plots in different classes and I was wondering if there is a way to click on a point in one of the plots and have it select another point on the other two plots. below is one of my classes for a plot. the other two plots are the same.
Thank you anyone for help.

final Chart chart = new Chart()
.setType(Series.Type.SCATTER)
.setZoomType(Chart.ZoomType.X_AND_Y)
.setChartTitleText("Urgency vs. Data Type")
.setLegend(
new Legend().setLayout(Legend.Layout.VERTICAL)
.setAlign(Legend.Align.LEFT)
.setVerticalAlign(Legend.VerticalAlign.TOP)
.setX(50).setY(50).setBorderWidth(1)
.setFloating(true).setBackgroundColor("WHITE")
.setBorderColor("WHITE"))
.setToolTip(new ToolTip().setFormatter(new ToolTipFormatter() {

public String format(ToolTipData toolTipData) {
return toolTipData.getXAsDouble() + ","
    + toolTipData.getYAsDouble() + "";}
        }))
    .setScatterPlotOptions(
new ScatterPlotOptions().setMarker(
new Marker().setRadius(5)
    .setHoverState(
new Marker().setEnabled(true)
    .setLineColor(
new Color(100,100,100))))
    .setHoverStateMarker(new Marker().setEnabled(false)));
    chart.getXAxis().setAxisTitleText("").setStartOnTick(true)
            .setEndOnTick(true).setShowLastLabel(true);
    chart.setSize(350, 350);

    chart.setBackgroundColor(new Color()
              );        
    chart.addSeries(chart.createSeries().setName("Mission Plans")
    .setPoints(
    new Number[][] { { 20, 15 }, { 20, 30 }, { 20, 10 } }));

    chart.addSeries(chart.createSeries().setName("Tracks")
    .setPoints(
    new Number[][] { { 10, 5 }, { 10, 15 }, { 10, 0 },
                            { 10, 4 } }));
    return chart;