e6094d2cbeec1ad947792ad8bcc447a5ab6a8c98346092251756b78e4fb30c1fd7999db8fa29e9b584b5b8b060ea6fd15a6c1941d3ad8b14adc8c7ddfc1a71 872 B

123456789101112131415161718192021
  1. /**
  2. * Count the number of edges between the same two points, used to obtain the curvature table and the parity of the edge
  3. * @see /graph/GraphSeries.js@getInitialData
  4. * @param {module:echarts/model/SeriesModel} seriesModel
  5. */
  6. export declare function initCurvenessList(seriesModel: any): void;
  7. /**
  8. * set edgeMap with key
  9. * @param {number|string|module:echarts/data/Graph.Node} n1
  10. * @param {number|string|module:echarts/data/Graph.Node} n2
  11. * @param {module:echarts/model/SeriesModel} seriesModel
  12. * @param {number} index
  13. */
  14. export declare function createEdgeMapForCurveness(n1: any, n2: any, seriesModel: any, index: any): void;
  15. /**
  16. * get curvature for edge
  17. * @param edge
  18. * @param {module:echarts/model/SeriesModel} seriesModel
  19. * @param index
  20. */
  21. export declare function getCurvenessForEdge(edge: any, seriesModel: any, index: any, needReverse?: boolean): any;