SVG-based sidebar widget displaying immediate family relationships (parents, siblings, spouses, children) with compact card layout, multi-spouse routing, wrapped rows, and ancestor/descendant indicators.
10 lines
238 B
JavaScript
10 lines
238 B
JavaScript
/**
|
|
* Family Navigator Graph — entry point.
|
|
*
|
|
* Reads embedded data from the sidebar and initializes the compact chart.
|
|
*/
|
|
import Chart from "./lib/chart.js";
|
|
|
|
// Expose for sidebar inline script
|
|
window.FamilyNavGraphChart = Chart;
|