@@ -437,29 +437,33 @@ export declare class Chart extends Drawing {
437437target : string | null ;
438438options : ChartOptions ;
439439constructor ( options : ChartOptions ) ;
440- /** RelationshipManager calls this via Drawings */
441- setRelationshipId ( rId : string ) : void ;
442440/** Return relationship type for this drawing */
443441getMediaType ( ) : keyof typeof Util . schemas ;
444- /** Creates the graphicFrame container that goes inside an anchor in drawing part */
445- private createGraphicFrame ;
442+ /** RelationshipManager calls this via Drawings */
443+ setRelationshipId ( rId : string ) : void ;
446444/** Drawing part representation (inside an anchor) */
447445toXML ( xmlDoc : XMLDOM ) : XMLNode ;
448- private _nextAxisIdBase ;
449446/** Chart part XML: /xl/charts/chartN.xml */
450447toChartSpaceXML ( ) : XMLDOM ;
448+ /** Creates the graphicFrame container that goes inside an anchor in drawing part */
449+ private createGraphicFrame ;
451450/** Create the primary chart node based on type and stacking */
452451private _createPrimaryChartNode ;
453- /** Resolve grouping value based on chart type and stacking */
454- private _resolveGrouping ;
452+ /** Build a <c:ser> node */
453+ private _createSeriesNode ;
454+ /** Apply a basic series color if provided. Supports RGB (RRGGBB) or ARGB (AARRGGBB); leading # optional. Alpha (if provided) is stripped. */
455+ private _applySeriesColor ;
456+ /** Create legend node honoring position + overlay */
457+ private _createLegendNode ;
455458/** Create a c:title node with minimal rich text required for Excel to render */
456459private _createTitleNode ;
457460/** Create a category axis (catAx) */
458461private _createCategoryAxis ;
459462/** Create a value axis (valAx) */
460463private _createValueAxis ;
461- /** Apply a basic series color if provided. Supports RGB (RRGGBB) or ARGB (AARRGGBB); leading # optional. Alpha (if provided) is stripped. */
462- private _applySeriesColor ;
464+ private _nextAxisIdBase ;
465+ /** Resolve grouping value based on chart type and stacking */
466+ private _resolveGrouping ;
463467}
464468export type Relation = {
465469[ id : string ] : {
0 commit comments