GNOME Bugzilla – Bug 656799
Sheet1!DX128 : Unknown enum value 'markers' for attribute val
Last modified: 2011-08-18 05:59:44 UTC
Created attachment 194098 [details] sample file When opening the attached Gnumeric-generated xlsx file, the warning: Sheet1!DX128 : Unknown enum value 'markers' for attribute val is displayed. We should probably be able to understand the values that we are writing.
Okay, we read: static EnumVal styles[] = { {"line", 0}, {"lineMarker", 1}, {"marker", 2}, {"none", 3}, {"smooth", 4}, {"smoothMarker", 5} }; but write: style = (has_lines)? (use_splines? (has_markers? "smoothMarker": "smooth"): (has_markers? "lineMarker": "line")): (has_markers? "markers": "none"); So we need to determine whether it should be "marker" or "markers"!
According to Edition 2: 21.2.3.40 ST_ScatterStyle (Scatter Style) and Edition 1: 5.7.3.40 ST_ScatterStyle (Scatter Style) it should be "marker".
This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.