following the example WorldDemo, I tried to create a map from a shp file.
I Extended World class:
Code: Select all
public class MyWorld extends World {
@Override
public void loadMapFromResource(Map Series, String ShpName) throws FileNotFoundException, IOException, ClassNotFoundException, Exception {
MYSHP myshp = new MYSHP();
myshp.loadMap(Series, ShpName, false);
}
}
1. In the editing dialog of the graphic I get an exception from the cellrenderer of the series because of the missing image icon.
I resolved it overwriting the method getBitmapEditor()
Code: Select all
@Override
public java.net.URL getBitmapEditor() {
return MyWorld.class.getResource("World.gif");
}
is this the correct way to handle the image icon to show ?
2.When I try to edit the series I get another exception:
Code: Select all
Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: -1
at com.steema.teechart.editors.SeriesGeneral.AddSeriesEditor(SeriesGeneral.java:243)
at com.steema.teechart.editors.SeriesGeneral.<init>(SeriesGeneral.java:137)
at com.steema.teechart.editors.ChartEditorPanel.jTree1_valueChanged(ChartEditorPanel.java:314)
at com.steema.teechart.editors.ChartEditor_jTree1_treeSelectionAdapter.valueChanged(ChartEditorPanel.java:393)
at javax.swing.JTree.fireValueChanged(JTree.java:2919)
at javax.swing.JTree$TreeSelectionRedirector.valueChanged(JTree.java:3378)
at javax.swing.tree.DefaultTreeSelectionModel.fireValueChanged(DefaultTreeSelectionModel.java:634)
at javax.swing.tree.DefaultTreeSelectionModel.notifyPathChange(DefaultTreeSelectionModel.java:1092)
at javax.swing.tree.DefaultTreeSelectionModel.setSelectionPaths(DefaultTreeSelectionModel.java:293)
at javax.swing.tree.DefaultTreeSelectionModel.addSelectionPaths(DefaultTreeSelectionModel.java:333)
at javax.swing.tree.DefaultTreeSelectionModel.addSelectionPath(DefaultTreeSelectionModel.java:309)
at javax.swing.JTree.addSelectionPath(JTree.java:1738)
at com.steema.teechart.editors.ChartEditorPanel$1.mouseClicked(ChartEditorPanel.java:331)
at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:270)
at java.awt.Component.processMouseEvent(Component.java:6508)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)
at java.awt.Component.processEvent(Component.java:6270)
at java.awt.Container.processEvent(Container.java:2229)
at java.awt.Component.dispatchEventImpl(Component.java:4861)
at java.awt.Container.dispatchEventImpl(Container.java:2287)
at java.awt.Component.dispatchEvent(Component.java:4687)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4501)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
at java.awt.Container.dispatchEventImpl(Container.java:2273)
at java.awt.Window.dispatchEventImpl(Window.java:2719)
at java.awt.Component.dispatchEvent(Component.java:4687)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)
at java.awt.EventQueue.access$200(EventQueue.java:103)
at java.awt.EventQueue$3.run(EventQueue.java:694)
at java.awt.EventQueue$3.run(EventQueue.java:692)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
at java.awt.EventQueue$4.run(EventQueue.java:708)
at java.awt.EventQueue$4.run(EventQueue.java:706)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:154)
at java.awt.WaitDispatchSupport$2.run(WaitDispatchSupport.java:182)
at java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:221)
at java.security.AccessController.doPrivileged(Native Method)
at java.awt.WaitDispatchSupport.enter(WaitDispatchSupport.java:219)
at java.awt.Dialog.show(Dialog.java:1082)
at java.awt.Component.show(Component.java:1651)
at java.awt.Component.setVisible(Component.java:1603)
at java.awt.Window.setVisible(Window.java:1014)
at java.awt.Dialog.setVisible(Dialog.java:1005)
at com.steema.teechart.editors.ChartEditor.editChart(ChartEditor.java:107)
at com.steema.teechart.editors.ChartEditor.editChart(ChartEditor.java:102)
at com.steema.teechart.Commander$1.actionPerformed(Commander.java:116)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:289)
at java.awt.Component.processMouseEvent(Component.java:6505)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)
at java.awt.Component.processEvent(Component.java:6270)
at java.awt.Container.processEvent(Container.java:2229)
at java.awt.Component.dispatchEventImpl(Component.java:4861)
at java.awt.Container.dispatchEventImpl(Container.java:2287)
at java.awt.Component.dispatchEvent(Component.java:4687)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
at java.awt.Container.dispatchEventImpl(Container.java:2273)
at java.awt.Window.dispatchEventImpl(Window.java:2719)
at java.awt.Component.dispatchEvent(Component.java:4687)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)
at java.awt.EventQueue.access$200(EventQueue.java:103)
at java.awt.EventQueue$3.run(EventQueue.java:694)
at java.awt.EventQueue$3.run(EventQueue.java:692)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
at java.awt.EventQueue$4.run(EventQueue.java:708)
at java.awt.EventQueue$4.run(EventQueue.java:706)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
Code: Select all
int n = com.steema.teechart.misc.Utils.seriesTypesIndex(series.getClass());
Class editorClass = com.steema.teechart.editors.Utils.seriesEditorsOf[n];
but the classes handled are:
Code: Select all
final static public Class[] seriesEditorsOf = {
com.steema.teechart.editors.series.LineEditor.class,
com.steema.teechart.editors.series.PointsEditor.class,
com.steema.teechart.editors.series.AreaEditor.class,
com.steema.teechart.editors.series.FastLineEditor.class,
com.steema.teechart.editors.series.LineEditor.class,
com.steema.teechart.editors.series.BarEditor.class,
com.steema.teechart.editors.series.BarEditor.class,
com.steema.teechart.editors.series.PieEditor.class,
com.steema.teechart.editors.series.ShapeEditor.class,
com.steema.teechart.editors.series.ArrowEditor.class,
com.steema.teechart.editors.series.PointsEditor.class, //Bubble
com.steema.teechart.editors.series.GanttEditor.class,
com.steema.teechart.editors.series.CandleEditor.class,
com.steema.teechart.editors.series.DonutEditor.class,
com.steema.teechart.editors.series.VolumeEditor.class,
com.steema.teechart.editors.series.BarEditor.class, //Bar3D
com.steema.teechart.editors.series.Point3DEditor.class, //Points3D
com.steema.teechart.editors.series.PolarEditor.class,
com.steema.teechart.editors.series.PolarEditor.class, //Radar
com.steema.teechart.editors.series.ClockEditor.class,
com.steema.teechart.editors.series.PolarEditor.class, //WindRose
com.steema.teechart.editors.series.PyramidEditor.class,
com.steema.teechart.editors.series.SurfaceEditor.class,
com.steema.teechart.editors.series.PointsEditor.class, //LinePoint
com.steema.teechart.editors.series.BarEditor.class, //BarJoin
com.steema.teechart.editors.series.ColorGridEditor.class,
com.steema.teechart.editors.series.WaterFallEditor.class,
com.steema.teechart.editors.series.HistoEditor.class,
com.steema.teechart.editors.series.ErrBarEditor.class, //Errorcom.steema.teechart.misc
com.steema.teechart.editors.series.ErrBarEditor.class,
com.steema.teechart.editors.series.ContourEditor.class,
com.steema.teechart.editors.series.SmithEditor.class,
com.steema.teechart.editors.series.CalendarEditor.class,
com.steema.teechart.editors.series.HighLowEditor.class,
com.steema.teechart.editors.series.TriSurfaceEditor.class,
com.steema.teechart.editors.series.FunnelEditor.class,
com.steema.teechart.editors.series.BoxPlotEditor.class,
com.steema.teechart.editors.series.BoxPlotEditor.class, //HorizBox
com.steema.teechart.editors.series.AreaEditor.class,
com.steema.teechart.editors.series.TowerEditor.class,
com.steema.teechart.editors.series.PointFigureEditor.class,
com.steema.teechart.editors.series.GaugesEditor.class,
com.steema.teechart.editors.series.Vector3DEditor.class,
com.steema.teechart.editors.series.MapEditor.class,
com.steema.teechart.editors.series.BezierEditor.class,
com.steema.teechart.editors.series.ImageEditor.class,
com.steema.teechart.editors.series.IsoSurfaceEditor.class,
com.steema.teechart.editors.series.CircularGaugeEditor.class,
com.steema.teechart.editors.series.LinearGaugeEditor.class,
com.steema.teechart.editors.series.LinearGaugeEditor.class, //VerticalLinearGauge
com.steema.teechart.editors.series.LinearGaugeEditor.class, //Missing NumericGauge
com.steema.teechart.editors.series.KnobGaugeEditor.class,
com.steema.teechart.editors.series.HistoEditor.class, //HorizHistogram
com.steema.teechart.editors.series.MapEditor.class, //World
com.steema.teechart.editors.series.ErrorPointEditor.class,
com.steema.teechart.editors.series.ErrorPoint3DEditor.class
};
Please find attached the test project. Only the first map works in order to limit the size of the attachment.
Thankyou