summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2011-08-08 16:38:50 -0400
committerKohei Yoshida <kohei.yoshida@suse.com>2011-08-08 16:38:50 -0400
commitdb6e4877fe99e70f1a890e7409a780a666bf2621 (patch)
treee45244a9302bf889e551f7ec781e7ffc0bfb4d60
parent12b571ba40be6151e1178d8ce1b25284464099ca (diff)
Fixed a bunch of chart record names.
-rw-r--r--src/xlsrecord.py2
-rw-r--r--src/xlsstream.py8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/xlsrecord.py b/src/xlsrecord.py
index b75225b..05432ea 100644
--- a/src/xlsrecord.py
+++ b/src/xlsrecord.py
@@ -3290,7 +3290,7 @@ class Chart(BaseRecordHandler):
self.appendLine("size: (width, height) = (%d, %d)"%(w, h))
-class CHSeries(BaseRecordHandler):
+class Series(BaseRecordHandler):
DATE = 0
NUMERIC = 1
diff --git a/src/xlsstream.py b/src/xlsstream.py
index 651f856..bf3a4ac 100644
--- a/src/xlsstream.py
+++ b/src/xlsstream.py
@@ -238,12 +238,12 @@ recData = {
0x08A3: ["FORCEFULLCALCULATION", "Force Full Calculation Mode"],
0x1001: ["UNITS", "[unused, must be ignored]"],
0x1002: ["CHART", "Position And Size of Chart Area", xlsrecord.Chart],
- 0x1003: ["CHSERIES", "Chart Series", xlsrecord.CHSeries],
+ 0x1003: ["SERIES", "Data Properties for Series, Trendlines or Error Bars", xlsrecord.Series],
0x1006: ["CHDATAFORMAT", "?"],
- 0x1007: ["CHLINEFORMAT", "Line or Border Formatting of A Chart"],
+ 0x1007: ["LINEFORMAT", "Appearance of A Line"],
0x1009: ["CHMARKERFORMAT", "?"],
0x100D: ["CHSTRING", "Series Category Name or Title Text in Chart"],
- 0x100A: ["CHAREAFORMAT", "Area Formatting Attribute of A Chart"],
+ 0x100A: ["AREAFORMAT", "Patterns and Colors in Filled Region of Chart"],
0x100B: ["CHPIEFORMAT", "?"],
0x100C: ["CHATTACHEDLABEL", "?"],
0x100D: ["CHSTRING", "?"],
@@ -264,7 +264,7 @@ recData = {
0x1025: ["CHTEXT", "?"],
0x1026: ["CHFONT", "?"],
0x1027: ["CHOBJECTLINK", "?"],
- 0x1032: ["CHFRAME", "Border and Area Formatting of A Chart"],
+ 0x1032: ["FRAME", "Type, Size and Position of the Frame around A Chart"],
0x1033: ["BEGIN", "Start of Chart Sheet Substream"],
0x1034: ["END", "End of Chart Sheet Substream"],
0x1035: ["CHPLOTFRAME", "Chart Plot Frame"],