Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# Copyright (c) 2010-2020 openpyxl 

2 

3from openpyxl.xml.constants import CHART_NS 

4 

5from openpyxl.descriptors.serialisable import Serialisable 

6from openpyxl.descriptors.excel import Relation 

7 

8 

9class ChartRelation(Serialisable): 

10 

11 tagname = "chart" 

12 namespace = CHART_NS 

13 

14 id = Relation() 

15 

16 def __init__(self, id): 

17 self.id = id