Pentaho Report Designer

XY Charts are not working

Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Priority: Severe Severe
  • Resolution: Fixed
  • Affects Version/s: 2.0.GA
  • Fix Version/s: 3.0.0.GA
  • Component/s: Charting
  • Customer Case:
  • QA Validation Status:
    Validated by QA
  • Description:
    Hide
    Attempting to build an XY chart in the latest nightly build of the 1.8 PRD - get "Could not create report. (org.pentaho.plugin.jfreereport.reportcharts.XYSeriesCollectorFunction.setXValueColumn([Ljava.lang.String;))" error for every chart type that uses the XY data collector.

    Repro:
    a) use query and example from doc: http://wiki.pentaho.org/display/PentahoDoc/The+XY+Dataset
    b) In chart def: Series Names = PRODUCTLINE; X Value = BUYPRICE; Y Value = MSRP
    Show
    Attempting to build an XY chart in the latest nightly build of the 1.8 PRD - get "Could not create report. (org.pentaho.plugin.jfreereport.reportcharts.XYSeriesCollectorFunction.setXValueColumn([Ljava.lang.String;))" error for every chart type that uses the XY data collector. Repro: a) use query and example from doc: http://wiki.pentaho.org/display/PentahoDoc/The+XY+Dataset b) In chart def: Series Names = PRODUCTLINE; X Value = BUYPRICE; Y Value = MSRP
  • Environment:
    nightly 1.8 PRD, build 538

Activity

Hide
Gretchen Moran added a comment - 14/Mar/08 11:23 AM
I looke dinto this.. there is a mismatch between the method names: the API method is "setxValueColumn()", but Report Designer is looking for "setXValueColumn()". This is important, as beans (which the report charts are) use reflection for method invokation. Have these charts ever worked? I assume they did, so I can't be sure where this change weas introduced, but shouoldn't be a terribly difficult fix, oncwe someone figures out why and when it broke.
Show
Gretchen Moran added a comment - 14/Mar/08 11:23 AM I looke dinto this.. there is a mismatch between the method names: the API method is "setxValueColumn()", but Report Designer is looking for "setXValueColumn()". This is important, as beans (which the report charts are) use reflection for method invokation. Have these charts ever worked? I assume they did, so I can't be sure where this change weas introduced, but shouoldn't be a terribly difficult fix, oncwe someone figures out why and when it broke.
Kurtis Cruzada made changes - 17/Mar/08 1:46 PM
Field Original Value New Value
Fix Version/s 1.7.0.GA [ 10401 ]
Priority Unknown [ 7 ] Severe [ 3 ]
Kurtis Cruzada made changes - 20/Mar/08 5:03 PM
Assignee Triage [ project admin ] Angelo Rodriguez [ arodriguez ]
Jake Cornelius made changes - 17/Apr/08 9:52 AM
Due Date 2008-04-18 00:00:00.0
Jake Cornelius made changes - 17/Apr/08 9:52 AM
Assignee Angelo Rodriguez [ arodriguez ] Ravi Hasija [ rhasija ]
Hide
Ravi Hasija added a comment - 18/Apr/08 11:19 AM - edited
I have verified this with Thomas that the report designer branch 1.7 works, but the error happens in the trunk. The reporting engine works with XYSeriesCollectorFunction class, but the trunk report designer does not.

To summarize PRD 1.7 is working and we need to find out why PRD trunk doesn't.
Show
Ravi Hasija added a comment - 18/Apr/08 11:19 AM - edited I have verified this with Thomas that the report designer branch 1.7 works, but the error happens in the trunk. The reporting engine works with XYSeriesCollectorFunction class, but the trunk report designer does not. To summarize PRD 1.7 is working and we need to find out why PRD trunk doesn't.
Ravi Hasija made changes - 18/Apr/08 11:20 AM
Status Open [ 1 ] In Progress [ 3 ]
Hide
Kurtis Cruzada added a comment - 23/Apr/08 9:29 AM
Based on Ravi's feedback, moved the issue to 1.8 only .
Show
Kurtis Cruzada added a comment - 23/Apr/08 9:29 AM Based on Ravi's feedback, moved the issue to 1.8 only .
Kurtis Cruzada made changes - 23/Apr/08 9:29 AM
Fix Version/s 1.8.Backlog [ 10381 ]
Fix Version/s 1.7.0.GA [ 10401 ]
Hide
Thomas Morgner added a comment - 02/May/08 3:44 PM
As I found out (painfully in a very embarrasing situation) this bug also affects 1.7-M1 of the report-designer. I tracked this bug down to a sequence of code where the RD uses CG-Lib (a Java-Assember) to produce a derived class that then breaks everything. Actually, this whole process is strange and the derived classes generated by RD are no valid functions anymore (in the sense of being usable in the reporting engine. The generated code makes way to many assumptions that do not hold true in the real world to be sensible). For now, I'm going to fix the function-wrapper-generation; for RD 2.0 we will completely throw out that part of the code as it is black magic and not engineering ..
Show
Thomas Morgner added a comment - 02/May/08 3:44 PM As I found out (painfully in a very embarrasing situation) this bug also affects 1.7-M1 of the report-designer. I tracked this bug down to a sequence of code where the RD uses CG-Lib (a Java-Assember) to produce a derived class that then breaks everything. Actually, this whole process is strange and the derived classes generated by RD are no valid functions anymore (in the sense of being usable in the reporting engine. The generated code makes way to many assumptions that do not hold true in the real world to be sensible). For now, I'm going to fix the function-wrapper-generation; for RD 2.0 we will completely throw out that part of the code as it is black magic and not engineering ..
Thomas Morgner made changes - 02/May/08 3:44 PM
Assignee Ravi Hasija [ rhasija ] Thomas Morgner [ tmorgner ]
Hide
Thomas Morgner added a comment - 03/May/08 10:26 AM
After digging deeper into that (and after having to use a Java DISASSEMBLER! because of the weird gode generation going on) I traced it down to:

(1) The Report-Designer generates a Wrapper-Function does does not use the getter/setter methods from the original bean-info object. Therefore the generated getters and setters do not match and the resulting merged bean-info between the original and the generated class will no longer work. Fixed by passing the getter and setter names around. This is only a temporary fix, as this schema can break elsewhere. The full fix is not to use magic like code generations and to use real-world approach.

(2) The Report-Designer also generates a BeanInfo object that is broken (as the referenced getter and setter method are not there). The beast swallows all exceptions and thus no one notices that the bean-info object is broken. For that reason, the ChartEditor is also broken (as this one uses a different kind of magic to work with the magic from the generated beans/beanInfo classes. The xy(z)-Functions were obviously broken, as the dialog did not show any grouping and missed a couple of properties. Therefore I can say, that charts relying on the XY(Z)-DataCollector never worked. They were never used in any of the demos either, so chances are high that no one ever used them (or tried to use them) at all.

(3) The XYLineChartExpression uses java.awt.Font properties. These property-types have no parser/writer inside the reporting engine and therefore they were never usable in any of the XML report definitions of the reporting engine. Again a indicator for the fact that this part of the charting never worked.
Show
Thomas Morgner added a comment - 03/May/08 10:26 AM After digging deeper into that (and after having to use a Java DISASSEMBLER! because of the weird gode generation going on) I traced it down to: (1) The Report-Designer generates a Wrapper-Function does does not use the getter/setter methods from the original bean-info object. Therefore the generated getters and setters do not match and the resulting merged bean-info between the original and the generated class will no longer work. Fixed by passing the getter and setter names around. This is only a temporary fix, as this schema can break elsewhere. The full fix is not to use magic like code generations and to use real-world approach. (2) The Report-Designer also generates a BeanInfo object that is broken (as the referenced getter and setter method are not there). The beast swallows all exceptions and thus no one notices that the bean-info object is broken. For that reason, the ChartEditor is also broken (as this one uses a different kind of magic to work with the magic from the generated beans/beanInfo classes. The xy(z)-Functions were obviously broken, as the dialog did not show any grouping and missed a couple of properties. Therefore I can say, that charts relying on the XY(Z)-DataCollector never worked. They were never used in any of the demos either, so chances are high that no one ever used them (or tried to use them) at all. (3) The XYLineChartExpression uses java.awt.Font properties. These property-types have no parser/writer inside the reporting engine and therefore they were never usable in any of the XML report definitions of the reporting engine. Again a indicator for the fact that this part of the charting never worked.
Hide
Thomas Morgner added a comment - 03/May/08 11:27 AM
The chart-expressions seem to happily introduce new parameter types (like the Chart's RECTANGLE_EDGE). The reporting engine cannot handle that and I will not include handlers as they start to build up a dependency on the JFreeChart project for no reason other than lazy programming inside the chart expressions. Fix the expressions or add a manual string-property for these unsupported properties.
Show
Thomas Morgner added a comment - 03/May/08 11:27 AM The chart-expressions seem to happily introduce new parameter types (like the Chart's RECTANGLE_EDGE). The reporting engine cannot handle that and I will not include handlers as they start to build up a dependency on the JFreeChart project for no reason other than lazy programming inside the chart expressions. Fix the expressions or add a manual string-property for these unsupported properties.
Gretchen Moran made changes - 11/Jul/08 6:03 AM
Workflow Pentaho Engineering 2.0 Workflow [ 68021 ] Pentaho Engineering 3.0 Workflow [ 166828 ]
Greg Bishop made changes - 04/Aug/08 3:57 PM
Reporter Jared Cornelius [ jcornelius ] Kurtis Cruzada [ kcruzada ]
Thomas Morgner made changes - 07/Aug/08 3:39 PM
Status In Progress [ 3 ] Ready For Test [ 10004 ]
Kurtis Cruzada made changes - 28/Jan/09 9:42 PM
Status Ready For Test [ 10004 ] Resolved [ 5 ]
Fix Version/s Liberty [ 10607 ]
Fix Version/s 2.0.X.Backlog [ 10381 ]
Resolution Fixed [ 1 ]
Golda David made changes - 12/Feb/09 9:21 AM
Assignee Thomas Morgner [ tmorgner ] Golda David [ gdavid ]
Hide
Golda David added a comment - 12/Feb/09 9:22 AM - edited
Tested in 2.1.0 build 36252 and all the xy chart types are working based upon the repro path but some exceptions are thrown in the command window

.Feb 12, 2009 10:24:47 AM org.pentaho.reportdesigner.crm.report.properties.editors.ChartEditor$17 actionPerformed
SEVERE: ChartEditor.propertyChange
java.lang.NoSuchMethodException: generated.org.pentaho.plugin.jfreereport.reportcharts.XYAreaChartExpression_DesignerWrapper.setLabelRotation(java.lang.Double)
        at java.lang.Class.getMethod(Unknown Source)
        at org.pentaho.reportdesigner.crm.report.properties.editors.ChartEditor$17.actionPerformed(ChartEditor.java:658)
        at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
        at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
        at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
        at java.awt.Component.processMouseEvent(Unknown Source)
        at javax.swing.JComponent.processMouseEvent(Unknown Source)
        at java.awt.Component.processEvent(Unknown Source)
        at java.awt.Container.processEvent(Unknown Source)
        at java.awt.Component.dispatchEventImpl(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Window.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
        at java.awt.Dialog$1.run(Unknown Source)
        at java.awt.Dialog$3.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.awt.Dialog.show(Unknown Source)
        at java.awt.Component.show(Unknown Source)
        at java.awt.Component.setVisible(Unknown Source)
        at java.awt.Window.setVisible(Unknown Source)
        at java.awt.Dialog.setVisible(Unknown Source)
        at org.pentaho.reportdesigner.lib.client.components.CenterPanelDialog.setVisible(CenterPanelDialog.java:393)
        at org.pentaho.reportdesigner.crm.report.properties.editors.ChartEditor.showChartEditor(ChartEditor.java:684)
        at org.pentaho.reportdesigner.crm.report.properties.PropertyEditorPanel$4.actionPerformed(PropertyEditorPanel.java:184)
        at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
        at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
        at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
        at java.awt.Component.processMouseEvent(Unknown Source)
        at javax.swing.JComponent.processMouseEvent(Unknown Source)
        at java.awt.Component.processEvent(Unknown Source)
        at java.awt.Container.processEvent(Unknown Source)
        at java.awt.Component.dispatchEventImpl(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Window.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.run(Unknown Source)
java.lang.NoSuchMethodException: generated.org.pentaho.plugin.jfreereport.reportcharts.XYAreaChartExpression_DesignerWrapper.setLabelRotation(java.lang.Double)
        at java.lang.Class.getMethod(Unknown Source)
        at org.pentaho.reportdesigner.crm.report.properties.editors.ChartEditor$17.actionPerformed(ChartEditor.java:658)
        at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
        at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
        at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
        at java.awt.Component.processMouseEvent(Unknown Source)
        at javax.swing.JComponent.processMouseEvent(Unknown Source)
        at java.awt.Component.processEvent(Unknown Source)
        at java.awt.Container.processEvent(Unknown Source)
        at java.awt.Component.dispatchEventImpl(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Window.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
        at java.awt.Dialog$1.run(Unknown Source)
        at java.awt.Dialog$3.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.awt.Dialog.show(Unknown Source)
        at java.awt.Component.show(Unknown Source)
        at java.awt.Component.setVisible(Unknown Source)
        at java.awt.Window.setVisible(Unknown Source)
        at java.awt.Dialog.setVisible(Unknown Source)
        at org.pentaho.reportdesigner.lib.client.components.CenterPanelDialog.setVisible(CenterPanelDialog.java:393)
        at org.pentaho.reportdesigner.crm.report.properties.editors.ChartEditor.showChartEditor(ChartEditor.java:684)
        at org.pentaho.reportdesigner.crm.report.properties.PropertyEditorPanel$4.actionPerformed(PropertyEditorPanel.java:184)
        at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
        at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
        at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
        at java.awt.Component.processMouseEvent(Unknown Source)
        at javax.swing.JComponent.processMouseEvent(Unknown Source)
        at java.awt.Component.processEvent(Unknown Source)
        at java.awt.Container.processEvent(Unknown Source)
        at java.awt.Component.dispatchEventImpl(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Window.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.run(Unknown Source)
Show
Golda David added a comment - 12/Feb/09 9:22 AM - edited Tested in 2.1.0 build 36252 and all the xy chart types are working based upon the repro path but some exceptions are thrown in the command window .Feb 12, 2009 10:24:47 AM org.pentaho.reportdesigner.crm.report.properties.editors.ChartEditor$17 actionPerformed SEVERE: ChartEditor.propertyChange java.lang.NoSuchMethodException: generated.org.pentaho.plugin.jfreereport.reportcharts.XYAreaChartExpression_DesignerWrapper.setLabelRotation(java.lang.Double)         at java.lang.Class.getMethod(Unknown Source)         at org.pentaho.reportdesigner.crm.report.properties.editors.ChartEditor$17.actionPerformed(ChartEditor.java:658)         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)         at java.awt.Component.processMouseEvent(Unknown Source)         at javax.swing.JComponent.processMouseEvent(Unknown Source)         at java.awt.Component.processEvent(Unknown Source)         at java.awt.Container.processEvent(Unknown Source)         at java.awt.Component.dispatchEventImpl(Unknown Source)         at java.awt.Container.dispatchEventImpl(Unknown Source)         at java.awt.Component.dispatchEvent(Unknown Source)         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)         at java.awt.Container.dispatchEventImpl(Unknown Source)         at java.awt.Window.dispatchEventImpl(Unknown Source)         at java.awt.Component.dispatchEvent(Unknown Source)         at java.awt.EventQueue.dispatchEvent(Unknown Source)         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)         at java.awt.Dialog$1.run(Unknown Source)         at java.awt.Dialog$3.run(Unknown Source)         at java.security.AccessController.doPrivileged(Native Method)         at java.awt.Dialog.show(Unknown Source)         at java.awt.Component.show(Unknown Source)         at java.awt.Component.setVisible(Unknown Source)         at java.awt.Window.setVisible(Unknown Source)         at java.awt.Dialog.setVisible(Unknown Source)         at org.pentaho.reportdesigner.lib.client.components.CenterPanelDialog.setVisible(CenterPanelDialog.java:393)         at org.pentaho.reportdesigner.crm.report.properties.editors.ChartEditor.showChartEditor(ChartEditor.java:684)         at org.pentaho.reportdesigner.crm.report.properties.PropertyEditorPanel$4.actionPerformed(PropertyEditorPanel.java:184)         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)         at java.awt.Component.processMouseEvent(Unknown Source)         at javax.swing.JComponent.processMouseEvent(Unknown Source)         at java.awt.Component.processEvent(Unknown Source)         at java.awt.Container.processEvent(Unknown Source)         at java.awt.Component.dispatchEventImpl(Unknown Source)         at java.awt.Container.dispatchEventImpl(Unknown Source)         at java.awt.Component.dispatchEvent(Unknown Source)         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)         at java.awt.Container.dispatchEventImpl(Unknown Source)         at java.awt.Window.dispatchEventImpl(Unknown Source)         at java.awt.Component.dispatchEvent(Unknown Source)         at java.awt.EventQueue.dispatchEvent(Unknown Source)         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)         at java.awt.EventDispatchThread.run(Unknown Source) java.lang.NoSuchMethodException: generated.org.pentaho.plugin.jfreereport.reportcharts.XYAreaChartExpression_DesignerWrapper.setLabelRotation(java.lang.Double)         at java.lang.Class.getMethod(Unknown Source)         at org.pentaho.reportdesigner.crm.report.properties.editors.ChartEditor$17.actionPerformed(ChartEditor.java:658)         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)         at java.awt.Component.processMouseEvent(Unknown Source)         at javax.swing.JComponent.processMouseEvent(Unknown Source)         at java.awt.Component.processEvent(Unknown Source)         at java.awt.Container.processEvent(Unknown Source)         at java.awt.Component.dispatchEventImpl(Unknown Source)         at java.awt.Container.dispatchEventImpl(Unknown Source)         at java.awt.Component.dispatchEvent(Unknown Source)         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)         at java.awt.Container.dispatchEventImpl(Unknown Source)         at java.awt.Window.dispatchEventImpl(Unknown Source)         at java.awt.Component.dispatchEvent(Unknown Source)         at java.awt.EventQueue.dispatchEvent(Unknown Source)         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)         at java.awt.Dialog$1.run(Unknown Source)         at java.awt.Dialog$3.run(Unknown Source)         at java.security.AccessController.doPrivileged(Native Method)         at java.awt.Dialog.show(Unknown Source)         at java.awt.Component.show(Unknown Source)         at java.awt.Component.setVisible(Unknown Source)         at java.awt.Window.setVisible(Unknown Source)         at java.awt.Dialog.setVisible(Unknown Source)         at org.pentaho.reportdesigner.lib.client.components.CenterPanelDialog.setVisible(CenterPanelDialog.java:393)         at org.pentaho.reportdesigner.crm.report.properties.editors.ChartEditor.showChartEditor(ChartEditor.java:684)         at org.pentaho.reportdesigner.crm.report.properties.PropertyEditorPanel$4.actionPerformed(PropertyEditorPanel.java:184)         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)         at java.awt.Component.processMouseEvent(Unknown Source)         at javax.swing.JComponent.processMouseEvent(Unknown Source)         at java.awt.Component.processEvent(Unknown Source)         at java.awt.Container.processEvent(Unknown Source)         at java.awt.Component.dispatchEventImpl(Unknown Source)         at java.awt.Container.dispatchEventImpl(Unknown Source)         at java.awt.Component.dispatchEvent(Unknown Source)         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)         at java.awt.Container.dispatchEventImpl(Unknown Source)         at java.awt.Window.dispatchEventImpl(Unknown Source)         at java.awt.Component.dispatchEvent(Unknown Source)         at java.awt.EventQueue.dispatchEvent(Unknown Source)         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)         at java.awt.EventDispatchThread.run(Unknown Source)
Hide
Golda David added a comment - 17/Feb/09 3:39 PM
Charts are being displayed hence closing.
Show
Golda David added a comment - 17/Feb/09 3:39 PM Charts are being displayed hence closing.
Golda David made changes - 17/Feb/09 3:39 PM
Status Resolved [ 5 ] Closed [ 6 ]
QA Validation Status Validated by QA
Gretchen Moran made changes - 04/Aug/09 6:27 PM
Workflow Pentaho Engineering 3.0 Workflow [ 166828 ] Pentaho Engineering 4.0 Workflow [ 365894 ]
Marc Batchelor made changes - 04/Aug/09 8:48 PM
Workflow Pentaho Engineering 4.0 Workflow [ 365894 ] Pentaho Engineering 5.0 Workflow [ 416963 ]
Marc Batchelor made changes - 17/Aug/09 10:22 AM
Workflow Pentaho Engineering 5.0 Workflow [ 416963 ] Pentaho Engineering 6.0 Workflow [ 433098 ]
Marc Batchelor made changes - 06/May/10 6:48 PM
Workflow Pentaho Engineering 6.0 Workflow [ 433098 ] Pentaho Engineering 7.0 Workflow [ 499773 ]
Marc Batchelor made changes - 04/Aug/10 10:15 PM
Workflow Pentaho Engineering 7.0 Workflow [ 499773 ] Pentaho Engineering 8.0 Workflow [ 522065 ]
Transition Status Change Time Execution Times Last Executer Last Execution Date
Open Open In Progress In Progress
35d 43m
1
Ravi Hasija
18/Apr/08 11:20 AM
In Progress In Progress Ready For Test Ready For Test
111d 4h 18m
1
Thomas Morgner
07/Aug/08 3:39 PM
Ready For Test Ready For Test Resolved Resolved
174d 7h 3m
1
Kurtis Cruzada
28/Jan/09 9:42 PM
Resolved Resolved Closed Closed
19d 17h 56m
1
Golda David
17/Feb/09 3:39 PM

People

Dates

  • Due:
    18/Apr/08
    Created:
    14/Mar/08 10:36 AM
    Updated:
    17/Feb/09 3:39 PM
    Resolved:
    28/Jan/09 9:42 PM