We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to add an image with text or label in chord diagram I have used layout, highlight and chords method for creating this diagram.
Sample Code:- GRCh37 is my outer data cytobands are my inner data data is used for creating connection
.layout( GRCh37, { innerRadius: width / 2 - 180, outerRadius: width / 2 - 140, labels: { radialOffset: 70 }, ticks: { display: true, labelDenominator: 1000000 }, } ) .highlight('cytobands', cytobands, { innerRadius: width / 2 - 180, outerRadius: width / 2 - 140, opacity: 0.4, color: function (d) { return gieStainColor[d.gieStain] } }) .chords( 'l1', data, { min: 1, max: 1, logScale: true, opacity: 1, color: '#000000', tooltipContent: function (d) { return '<h3>' + d.source.name + ' ➤ ' + d.target.name + '</h3>'; } } ) .render()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to add an image with text or label in chord diagram
I have used layout, highlight and chords method for creating this diagram.
Sample Code:-
GRCh37 is my outer data
cytobands are my inner data
data is used for creating connection
The text was updated successfully, but these errors were encountered: