circosJS icon indicating copy to clipboard operation
circosJS copied to clipboard

Label edge values of source or target chords

Open rjurney opened this issue 9 years ago • 1 comments

At the moment if you turn labels on, it just displays a 0. I would like it to display a tick for each outgoing or ingoing chord. Is this possible?

image

rjurney avatar Jul 24 '15 21:07 rjurney

Hi @rjurney. I am sorry, I didn't receive notifications for issues so I just discover your issue. You can change the ticks settings of the layout. For example:

ticks: {
        display: true,
        spacing: 10,
        labels: true,
        labelSpacing: 1,
        labelSuffix: '',
        labelDenominator: 1,
        labelDisplay0: true,
        labelSize: '10px',
        labelColor: '#000000',
}

But you cannot specify that the ticks appear for each outgoing or ingoing chord. It seems complicated to me to do so. I'll think about it.

nicgirault avatar Nov 17 '15 12:11 nicgirault