@opendata-ai/openchart-core 6.17.0 → 6.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/types/spec.ts +6 -0
package/package.json
CHANGED
package/src/types/spec.ts
CHANGED
|
@@ -1072,6 +1072,12 @@ export interface SankeySpec {
|
|
|
1072
1072
|
* Defaults to 'auto'.
|
|
1073
1073
|
*/
|
|
1074
1074
|
nodeLabelAlign?: 'auto' | 'left' | 'right';
|
|
1075
|
+
/**
|
|
1076
|
+
* Explicit vertical ordering of nodes. An array of node IDs listed from
|
|
1077
|
+
* top to bottom. Nodes sharing the same column are sorted by their position
|
|
1078
|
+
* in this array. Nodes not in the array are placed after those that are.
|
|
1079
|
+
*/
|
|
1080
|
+
nodeSort?: string[];
|
|
1075
1081
|
/** Editorial chrome (title, subtitle, source, byline, footer). */
|
|
1076
1082
|
chrome?: Chrome;
|
|
1077
1083
|
/** Legend display configuration. */
|