Changes between Version 1 and Version 2 of Ticket #50585, comment 5


Ignore:
Timestamp:
Feb 11, 2016, 10:49:57 PM (8 years ago)
Author:
dbevans (David B. Evans)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #50585, comment 5

    v1 v2  
    1 The Matrix plots (and others, too, I think) require you to select an appropriately sized region of cells in the spreadsheet before attempting to insert the chart.  At least 2 rows/columns for MatrixXY and 3 for MatrixXYZ.  The error described here results from not doing this and causes the crash in MatrixXY plots due to unexpected NULL data while trying to construct the sample plot view.  MatrixXYZ doesn't actually crash due to an earlier fix committed to goffice [https://git.gnome.org/browse/goffice/commit/?id=813eabc31ed3cd7765312f78ae1cbb7c2085ebb9 here] and released with goffice 0.10.24.
     1The Matrix plots (and others, too, I think) require you to select an appropriately sized region of cells in the spreadsheet before attempting to insert the chart.  At least 2 rows/columns for MatrixXY and 3 for MatrixXYZ.  The error described here results from not doing this and causes the crash in MatrixXY plots due to unexpected NULL data while trying to construct the data matrix for the sample plot view.  MatrixXYZ doesn't actually crash due to an earlier fix committed to goffice [https://git.gnome.org/browse/goffice/commit/?id=813eabc31ed3cd7765312f78ae1cbb7c2085ebb9 here] and released with goffice 0.10.24.
    22
    33Relevant code (in goffice) is gog_xyz_matrix_plot_build_matrix() in plugins/plot_surface/gog-xyz-surface.c which handles both cases.