Issue 119639 - the chart display incorrectly after save as ods from xls in AOO3.4
Summary: the chart display incorrectly after save as ods from xls in AOO3.4
Status: CONFIRMED
Alias: None
Product: Calc
Classification: Application
Component: save-export (show other issues)
Version: 3.4.0
Hardware: PC All
: P3 Normal (vote)
Target Milestone: ---
Assignee: AOO issues mailing list
QA Contact:
URL:
Keywords:
Depends on:
Blocks: 120823
  Show dependency tree
 
Reported: 2012-05-31 09:55 UTC by Du Jing
Modified: 2012-09-06 08:16 UTC (History)
3 users (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments
sample file (15.50 KB, application/vnd.ms-excel)
2012-05-31 09:55 UTC, Du Jing
no flags Details

Note You need to log in before you can comment on or make changes to this issue.
Description Du Jing 2012-05-31 09:55:56 UTC
Created attachment 77865 [details]
sample file

build info:AOO3.4_1327774

Steps:
1.open the file in AOO3.4
2.save the file as ods format,and reopen the new file

defect:
the chart display incorrectly.
Comment 1 Li Feng Wang 2012-06-14 07:04:12 UTC
can reproduce on AOO3.4 r1327774
Comment 2 Clarence GUO 2012-07-02 06:51:10 UTC
Seems the chart isn't a standard chart type but comes from Excel chart template.
Comment 3 Clarence GUO 2012-07-20 05:53:20 UTC
The chart in the sample is not a standard chart but a composite chart.
Series 1, 2 and 4 are percent stacked columns which were applied to the main Y axis, while series 3 is normal column which was applied to the secondary Y axis. So series 3 will cover some part of Series 1, 2 and 4.
MS Office supports such chart. It can set one or more data series to another chart type. AOO's UI cannot do this. But the chart kernal function supports. So when open the sample file the chart looks OK. However, the ODF format doesn't support this, that why after save the sample to ods and reopen, the chart becomes incorrect(Series 3 occupy 100% space of the percent stacked column).
The reason is AOO defined a style 'ch4' and applied to <chart:plot-area>. In this style, the chart:percentage attribute was set to true. This attribute specifies a percentage accumulation of values per category. Because this style was applied to <chart:plot-area>, then all data series are regarded as percent columns. And series 3 is a unique data series which applied to the secondary Y axis. So it occpy the total 100% space so that other data series are all covered.
If want to fix this defect, must move chart:percentage attribute from the style which applied to <chart:plot-area> to the style which applied to <chart:series>. However, for this attribute, ODF 1.2 says "This attribute is evaluated for chart styles that are applied to a <chart:plot-area> element.". So my requirement is conflict with the ODF standard.
Then how can I fix this defect? It seems the only way is to change the standard and change the corresponding filter code. But I know change the standard is not easy...