Circos: interacCircos

Description Usage Arguments Value Examples

View source: R/interacCircos.R

Description

Visualization of Interactive Circos Plot

Usage

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
Circos(
  moduleList = CircosModuleList(),
  genome = "hg19",
  genome2 = "hg19",
  genomeFillColor = "Spectral",
  chrPad = 0.02,
  width = NULL,
  height = NULL,
  innerRadius = 216,
  outerRadius = 240,
  svgClassName = "interacCircos",
  displayGenomeBorder = TRUE,
  genomeBorderColor = "#000",
  genomeBorderSize = 0.5,
  genomeTicksDisplay = FALSE,
  genomeTicksLen = 5,
  genomeTicksColor = "#000",
  genomeTicksTextSize = "0.6em",
  genomeTicksRealLength = TRUE,
  genomeTicksTextColor = "#000",
  genomeTicksScale = 3e+07,
  genomeTicksOffset = 0,
  genomeLabelDisplay = TRUE,
  genomeLabelTextSize = "10pt",
  genomeLabelTextColor = "#000",
  genomeLabelDx = 0,
  genomeLabelDy = 0,
  compareEvent = FALSE,
  compareEventGroupGapRate = 0.1,
  compareEventGroupDistance = 0,
  zoom = TRUE,
  TEXTModuleDragEvent = FALSE,
  CNVxlink = FALSE,
  CNVMouseEvent = TRUE,
  CNVMouseClickDisplay = FALSE,
  CNVMouseClickColor = "red",
  CNVMouseClickArcOpacity = 1,
  CNVMouseClickArcStrokeColor = "#F26223",
  CNVMouseClickArcStrokeWidth = 0,
  CNVMouseClickTextFromData = "fourth",
  CNVMouseClickTextOpacity = 1,
  CNVMouseClickTextColor = "red",
  CNVMouseClickTextSize = 8,
  CNVMouseClickTextPostionX = 0,
  CNVMouseClickTextPostionY = 0,
  CNVMouseClickTextDrag = TRUE,
  CNVMouseDownDisplay = FALSE,
  CNVMouseDownColor = "green",
  CNVMouseDownArcOpacity = 1,
  CNVMouseDownArcStrokeColor = "#F26223",
  CNVMouseDownArcStrokeWidth = 0,
  CNVMouseEnterDisplay = FALSE,
  CNVMouseEnterColor = "yellow",
  CNVMouseEnterArcOpacity = 1,
  CNVMouseEnterArcStrokeColor = "#F26223",
  CNVMouseEnterArcStrokeWidth = 0,
  CNVMouseLeaveDisplay = FALSE,
  CNVMouseLeaveColor = "pink",
  CNVMouseLeaveArcOpacity = 1,
  CNVMouseLeaveArcStrokeColor = "#F26223",
  CNVMouseLeaveArcStrokeWidth = 0,
  CNVMouseMoveDisplay = FALSE,
  CNVMouseMoveColor = "red",
  CNVMouseMoveArcOpacity = 1,
  CNVMouseMoveArcStrokeColor = "#F26223",
  CNVMouseMoveArcStrokeWidth = 0,
  CNVMouseOutDisplay = FALSE,
  CNVMouseOutAnimationTime = 500,
  CNVMouseOutColor = "red",
  CNVMouseOutArcOpacity = 1,
  CNVMouseOutArcStrokeColor = "red",
  CNVMouseOutArcStrokeWidth = 0,
  CNVMouseUpDisplay = FALSE,
  CNVMouseUpColor = "grey",
  CNVMouseUpArcOpacity = 1,
  CNVMouseUpArcStrokeColor = "#F26223",
  CNVMouseUpArcStrokeWidth = 0,
  CNVMouseOverDisplay = FALSE,
  CNVMouseOverColor = "red",
  CNVMouseOverArcOpacity = 1,
  CNVMouseOverArcStrokeColor = "#F26223",
  CNVMouseOverArcStrokeWidth = 3,
  CNVMouseOverTooltipsSetting = "style1",
  CNVMouseOverTooltipsHtml = " ",
  CNVMouseOverTooltipsPosition = "absolute",
  CNVMouseOverTooltipsBackgroundColor = "white",
  CNVMouseOverTooltipsBorderStyle = "solid",
  CNVMouseOverTooltipsBorderWidth = 0,
  CNVMouseOverTooltipsPadding = "3px",
  CNVMouseOverTooltipsBorderRadius = "3px",
  CNVMouseOverTooltipsOpacity = 0.8,
  HEATMAPMouseEvent = TRUE,
  HEATMAPMouseClickDisplay = FALSE,
  HEATMAPMouseClickColor = "green",
  HEATMAPMouseClickOpacity = 1,
  HEATMAPMouseClickStrokeColor = "none",
  HEATMAPMouseClickStrokeWidth = "none",
  HEATMAPMouseDownDisplay = FALSE,
  HEATMAPMouseDownColor = "green",
  HEATMAPMouseDownOpacity = 1,
  HEATMAPMouseDownStrokeColor = "none",
  HEATMAPMouseDownStrokeWidth = "none",
  HEATMAPMouseEnterDisplay = FALSE,
  HEATMAPMouseEnterColor = "green",
  HEATMAPMouseEnterOpacity = 1,
  HEATMAPMouseEnterStrokeColor = "none",
  HEATMAPMouseEnterStrokeWidth = "none",
  HEATMAPMouseLeaveDisplay = FALSE,
  HEATMAPMouseLeaveColor = "green",
  HEATMAPMouseLeaveOpacity = 1,
  HEATMAPMouseLeaveStrokeColor = "none",
  HEATMAPMouseLeaveStrokeWidth = "none",
  HEATMAPMouseMoveDisplay = FALSE,
  HEATMAPMouseMoveColor = "green",
  HEATMAPMouseMoveOpacity = 1,
  HEATMAPMouseMoveStrokeColor = "none",
  HEATMAPMouseMoveStrokeWidth = "none",
  HEATMAPMouseOutDisplay = FALSE,
  HEATMAPMouseOutAnimationTime = 500,
  HEATMAPMouseOutColor = "green",
  HEATMAPMouseOutOpacity = 1,
  HEATMAPMouseOutStrokeColor = "none",
  HEATMAPMouseOutStrokeWidth = "none",
  HEATMAPMouseUpDisplay = FALSE,
  HEATMAPMouseUpColor = "green",
  HEATMAPMouseUpOpacity = 1,
  HEATMAPMouseUpStrokeColor = "none",
  HEATMAPMouseUpStrokeWidth = "none",
  HEATMAPMouseOverDisplay = FALSE,
  HEATMAPMouseOverColor = "none",
  HEATMAPMouseOverOpacity = 1,
  HEATMAPMouseOverStrokeColor = "none",
  HEATMAPMouseOverStrokeWidth = "none",
  HEATMAPMouseOverTooltipsSetting = "style1",
  HEATMAPMouseOverTooltipsHtml = " ",
  HEATMAPMouseOverTooltipsPosition = "absolute",
  HEATMAPMouseOverTooltipsBackgroundColor = "white",
  HEATMAPMouseOverTooltipsBorderStyle = "solid",
  HEATMAPMouseOverTooltipsBorderWidth = 0,
  HEATMAPMouseOverTooltipsPadding = "3px",
  HEATMAPMouseOverTooltipsBorderRadius = "3px",
  HEATMAPMouseOverTooltipsOpacity = 0.8,
  BUBBLExlink = FALSE,
  BUBBLEMouseEvent = TRUE,
  BUBBLEMouseClickDisplay = FALSE,
  BUBBLEMouseClickColor = "green",
  BUBBLEMouseClickOpacity = 1,
  BUBBLEMouseClickStrokeColor = "none",
  BUBBLEMouseClickStrokeWidth = "none",
  BUBBLEMouseDownDisplay = FALSE,
  BUBBLEMouseDownColor = "green",
  BUBBLEMouseDownOpacity = 1,
  BUBBLEMouseDownStrokeColor = "none",
  BUBBLEMouseDownStrokeWidth = "none",
  BUBBLEMouseEnterDisplay = FALSE,
  BUBBLEMouseEnterColor = "green",
  BUBBLEMouseEnterOpacity = 1,
  BUBBLEMouseEnterStrokeColor = "none",
  BUBBLEMouseEnterStrokeWidth = "none",
  BUBBLEMouseLeaveDisplay = FALSE,
  BUBBLEMouseLeaveColor = "green",
  BUBBLEMouseLeaveOpacity = 1,
  BUBBLEMouseLeaveStrokeColor = "none",
  BUBBLEMouseLeaveStrokeWidth = "none",
  BUBBLEMouseMoveDisplay = FALSE,
  BUBBLEMouseMoveColor = "green",
  BUBBLEMouseMoveOpacity = 1,
  BUBBLEMouseMoveStrokeColor = "none",
  BUBBLEMouseMoveStrokeWidth = "none",
  BUBBLEMouseOutDisplay = FALSE,
  BUBBLEMouseOutAnimationTime = 500,
  BUBBLEMouseOutColor = "green",
  BUBBLEMouseOutOpacity = 1,
  BUBBLEMouseOutStrokeColor = "none",
  BUBBLEMouseOutStrokeWidth = "none",
  BUBBLEMouseUpDisplay = FALSE,
  BUBBLEMouseUpColor = "green",
  BUBBLEMouseUpOpacity = 1,
  BUBBLEMouseUpStrokeColor = "none",
  BUBBLEMouseUpStrokeWidth = "none",
  BUBBLEMouseOverDisplay = FALSE,
  BUBBLEMouseOverColor = "green",
  BUBBLEMouseOverOpacity = 1,
  BUBBLEMouseOverStrokeColor = "none",
  BUBBLEMouseOverStrokeWidth = "none",
  BUBBLEMouseOverTooltipsSetting = "style1",
  BUBBLEMouseOverTooltipsHtml = " ",
  BUBBLEMouseOverTooltipsPosition = "absolute",
  BUBBLEMouseOverTooltipsBackgroundColor = "white",
  BUBBLEMouseOverTooltipsBorderStyle = "solid",
  BUBBLEMouseOverTooltipsBorderWidth = 0,
  BUBBLEMouseOverTooltipsPadding = "3px",
  BUBBLEMouseOverTooltipsBorderRadius = "3px",
  BUBBLEMouseOverTooltipsOpacity = 0.8,
  SNPxlink = FALSE,
  SNPMouseEvent = TRUE,
  SNPMouseCombinationEvent = FALSE,
  SNPMouseCombinationImageDisplay = FALSE,
  SNPMouseCombinationImageTitle = "This is image",
  SNPMouseCombinationImageTitleSize = 5,
  SNPMouseCombinationImageTitleWeight = "bold",
  SNPMouseCombinationImageTitleColor = "black",
  SNPMouseCombinationImagePositionX = 0,
  SNPMouseCombinationImagePositionY = 0,
  SNPMouseCombinationImageHeight = 200,
  SNPMouseCombinationImageWidth = 300,
  SNPMouseCombinationGraphDisplay = FALSE,
  SNPMouseCombinationGraphTitle = "This is graph",
  SNPMouseCombinationGraphTitleSize = 5,
  SNPMouseCombinationGraphTitleWeight = "bold",
  SNPMouseCombinationGraphTitleColor = "black",
  SNPMouseCombinationGraphType = "histogram",
  SNPMouseCombinationGraphPositionX = 0,
  SNPMouseCombinationGraphPositionY = 0,
  SNPMouseCombinationGraphHeight = 200,
  SNPMouseCombinationGraphWidth = 300,
  SNPMouseCombinationGraphHistogramBarColor = "blue",
  SNPMouseCombinationGraphHistogramPadding = 30,
  SNPMouseCombinationGraphHistogramPositionCorrectX = 0,
  SNPMouseCombinationGraphPieAutoColor = TRUE,
  SNPMouseCombinationGraphPieColor = c("blue", "orange"),
  SNPMouseCombinationGraphPieSize = 50,
  SNPMouseCombinationGraphPieStroke = TRUE,
  SNPMouseCombinationGraphPieStrokeColor = "black",
  SNPMouseCombinationGraphPieStrokeWidth = 1,
  SNPMouseCombinationGraphPieOpacity = 1,
  SNPMouseCombinationGraphLineType = "linear",
  SNPMouseCombinationGraphLineColor = "black",
  SNPMouseCombinationGraphLineWidth = 1,
  SNPMouseCombinationGraphLinePoint = FALSE,
  SNPMouseCombinationGraphLinePointSize = 5,
  SNPMouseCombinationGraphLinePointAutoColor = TRUE,
  SNPMouseCombinationGraphLinePointColor = c("blue", "orange"),
  SNPMouseCombinationGraphLinePointStroke = TRUE,
  SNPMouseCombinationGraphLinePointStrokeColor = "black",
  SNPMouseCombinationGraphLinePointStrokeWidth = 1,
  SNPMouseCombinationGraphLinePointOpacity = 1,
  SNPMouseCombinationGraphLinePositionCorrectX = 0,
  SNPMouseCombinationTextDisplay = FALSE,
  SNPMouseCombinationTextColor = "red",
  SNPMouseCombinationTextSize = 3,
  SNPMouseCombinationTextWeight = "bold",
  SNPMouseCombinationTextPositionCorrectX = 0,
  SNPMouseCombinationTextPositionCorrectY = 0,
  SNPMouseClickDisplay = FALSE,
  SNPMouseClickColor = "red",
  SNPMouseClickCircleSize = 4,
  SNPMouseClickCircleOpacity = 1,
  SNPMouseClickCircleStrokeColor = "#F26223",
  SNPMouseClickCircleStrokeWidth = 0,
  SNPMouseClickTextFromData = "fourth",
  SNPMouseClickTextOpacity = 1,
  SNPMouseClickTextColor = "red",
  SNPMouseClickTextSize = 8,
  SNPMouseClickTextPostionX = 1,
  SNPMouseClickTextPostionY = 10,
  SNPMouseClickTextDrag = TRUE,
  SNPMouseDownDisplay = FALSE,
  SNPMouseDownColor = "green",
  SNPMouseDownCircleSize = 4,
  SNPMouseDownCircleOpacity = 1,
  SNPMouseDownCircleStrokeColor = "#F26223",
  SNPMouseDownCircleStrokeWidth = 0,
  SNPMouseEnterDisplay = FALSE,
  SNPMouseEnterColor = "yellow",
  SNPMouseEnterCircleSize = 4,
  SNPMouseEnterCircleOpacity = 1,
  SNPMouseEnterCircleStrokeColor = "#F26223",
  SNPMouseEnterCircleStrokeWidth = 0,
  SNPMouseLeaveDisplay = FALSE,
  SNPMouseLeaveColor = "pink",
  SNPMouseLeaveCircleSize = 4,
  SNPMouseLeaveCircleOpacity = 1,
  SNPMouseLeaveCircleStrokeColor = "#F26223",
  SNPMouseLeaveCircleStrokeWidth = 0,
  SNPMouseMoveDisplay = FALSE,
  SNPMouseMoveColor = "red",
  SNPMouseMoveCircleSize = 2,
  SNPMouseMoveCircleOpacity = 1,
  SNPMouseMoveCircleStrokeColor = "#F26223",
  SNPMouseMoveCircleStrokeWidth = 0,
  SNPMouseOutDisplay = FALSE,
  SNPMouseOutAnimationTime = 500,
  SNPMouseOutColor = "red",
  SNPMouseOutCircleSize = 2,
  SNPMouseOutCircleOpacity = 1,
  SNPMouseOutCircleStrokeColor = "red",
  SNPMouseOutCircleStrokeWidth = 0,
  SNPMouseUpDisplay = FALSE,
  SNPMouseUpColor = "grey",
  SNPMouseUpCircleSize = 2,
  SNPMouseUpCircleOpacity = 1,
  SNPMouseUpCircleStrokeColor = "#F26223",
  SNPMouseUpCircleStrokeWidth = 0,
  SNPMouseOverDisplay = FALSE,
  SNPMouseOverColor = "red",
  SNPMouseOverCircleSize = 2,
  SNPMouseOverCircleOpacity = 1,
  SNPMouseOverCircleStrokeColor = "#F26223",
  SNPMouseOverCircleStrokeWidth = 3,
  SNPMouseOverTooltipsSetting = "style1",
  SNPMouseOverTooltipsHtml = " ",
  SNPMouseOverTooltipsPosition = "absolute",
  SNPMouseOverTooltipsBackgroundColor = "white",
  SNPMouseOverTooltipsBorderStyle = "solid",
  SNPMouseOverTooltipsBorderWidth = 0,
  SNPMouseOverTooltipsPadding = "3px",
  SNPMouseOverTooltipsBorderRadius = "3px",
  SNPMouseOverTooltipsOpacity = 0.8,
  LINKxlink = FALSE,
  LINKMouseEvent = TRUE,
  LINKMouseClickDisplay = FALSE,
  LINKMouseClickOpacity = 1,
  LINKMouseClickStrokeColor = "green",
  LINKMouseClickStrokeWidth = 4,
  LINKMouseDownDisplay = FALSE,
  LINKMouseDownOpacity = 1,
  LINKMouseDownStrokeColor = "none",
  LINKMouseDownStrokeWidth = "none",
  LINKMouseEnterDisplay = FALSE,
  LINKMouseEnterOpacity = 1,
  LINKMouseEnterStrokeColor = "none",
  LINKMouseEnterStrokeWidth = "none",
  LINKMouseLeaveDisplay = FALSE,
  LINKMouseLeaveOpacity = 1,
  LINKMouseLeaveStrokeColor = "none",
  LINKMouseLeaveStrokeWidth = "none",
  LINKMouseMoveDisplay = FALSE,
  LINKMouseMoveOpacity = 1,
  LINKMouseMoveStrokeColor = "none",
  LINKMouseMoveStrokeWidth = "none",
  LINKMouseOutDisplay = FALSE,
  LINKMouseOutAnimationTime = 500,
  LINKMouseOutOpacity = 1,
  LINKMouseOutStrokeColor = "none",
  LINKMouseOutStrokeWidth = "none",
  LINKMouseUpDisplay = FALSE,
  LINKMouseUpOpacity = 1,
  LINKMouseUpStrokeColor = "none",
  LINKMouseUpStrokeWidth = "none",
  LINKMouseOverDisplay = FALSE,
  LINKMouseOverOpacity = 1,
  LINKMouseOverStrokeColor = "none",
  LINKMouseOverStrokeWidth = "none",
  LINKMouseOverTooltipsSetting = "style1",
  LINKMouseOverTooltipsHtml = " ",
  LINKMouseOverTooltipsPosition = "absolute",
  LINKMouseOverTooltipsBackgroundColor = "white",
  LINKMouseOverTooltipsBorderStyle = "solid",
  LINKMouseOverTooltipsBorderWidth = 0,
  LINKMouseOverTooltipsPadding = "3px",
  LINKMouseOverTooltipsBorderRadius = "3px",
  LINKMouseOverTooltipsOpacity = 1,
  LINKLabelDragEvent = FALSE,
  CHORDMouseEvent = TRUE,
  CHORDMouseFillColorExcluded = "#FFFFFF",
  CHORDMouseClickDisplay = FALSE,
  CHORDMouseClickOpacity = 1,
  CHORDMouseClickStrokeColor = "none",
  CHORDMouseClickStrokeWidth = "none",
  CHORDMouseDownDisplay = FALSE,
  CHORDMouseDownOpacity = 1,
  CHORDMouseDownStrokeColor = "none",
  CHORDMouseDownStrokeWidth = "none",
  CHORDMouseEnterDisplay = FALSE,
  CHORDMouseEnterOpacity = 1,
  CHORDMouseEnterStrokeColor = "none",
  CHORDMouseEnterStrokeWidth = "none",
  CHORDMouseLeaveDisplay = FALSE,
  CHORDMouseLeaveOpacity = 1,
  CHORDMouseLeaveStrokeColor = "none",
  CHORDMouseLeaveStrokeWidth = "none",
  CHORDMouseMoveDisplay = FALSE,
  CHORDMouseMoveOpacity = 1,
  CHORDMouseMoveStrokeColor = "none",
  CHORDMouseMoveStrokeWidth = "none",
  CHORDMouseOutDisplay = FALSE,
  CHORDMouseOutAnimationTime = 500,
  CHORDMouseOutOpacity = 1,
  CHORDMouseOutStrokeColor = "none",
  CHORDMouseOutStrokeWidth = "none",
  CHORDMouseUpDisplay = FALSE,
  CHORDMouseUpOpacity = 1,
  CHORDMouseUpStrokeColor = "none",
  CHORDMouseUpStrokeWidth = "none",
  CHORDMouseOverDisplay = FALSE,
  CHORDMouseOverOpacity = 1,
  CHORDMouseOverStrokeColor = "none",
  CHORDMouseOverStrokeWidth = "none",
  HISTOGRAMxlink = FALSE,
  HISTOGRAMMouseEvent = TRUE,
  HISTOGRAMMouseClickDisplay = FALSE,
  HISTOGRAMMouseClickColor = "red",
  HISTOGRAMMouseClickOpacity = 1,
  HISTOGRAMMouseClickStrokeColor = "none",
  HISTOGRAMMouseClickStrokeWidth = "none",
  HISTOGRAMMouseDownDisplay = FALSE,
  HISTOGRAMMouseDownColor = "red",
  HISTOGRAMMouseDownOpacity = 1,
  HISTOGRAMMouseDownStrokeColor = "none",
  HISTOGRAMMouseDownStrokeWidth = "none",
  HISTOGRAMMouseEnterDisplay = FALSE,
  HISTOGRAMMouseEnterColor = "red",
  HISTOGRAMMouseEnterOpacity = 1,
  HISTOGRAMMouseEnterStrokeColor = "none",
  HISTOGRAMMouseEnterStrokeWidth = "none",
  HISTOGRAMMouseLeaveDisplay = FALSE,
  HISTOGRAMMouseLeaveColor = "red",
  HISTOGRAMMouseLeaveOpacity = 1,
  HISTOGRAMMouseLeaveStrokeColor = "none",
  HISTOGRAMMouseLeaveStrokeWidth = "none",
  HISTOGRAMMouseMoveDisplay = FALSE,
  HISTOGRAMMouseMoveColor = "red",
  HISTOGRAMMouseMoveOpacity = 1,
  HISTOGRAMMouseMoveStrokeColor = "none",
  HISTOGRAMMouseMoveStrokeWidth = "none",
  HISTOGRAMMouseOutDisplay = FALSE,
  HISTOGRAMMouseOutAnimationTime = 500,
  HISTOGRAMMouseOutColor = "red",
  HISTOGRAMMouseOutOpacity = 1,
  HISTOGRAMMouseOutStrokeColor = "none",
  HISTOGRAMMouseOutStrokeWidth = "none",
  HISTOGRAMMouseUpDisplay = FALSE,
  HISTOGRAMMouseUpColor = "red",
  HISTOGRAMMouseUpOpacity = 1,
  HISTOGRAMMouseUpStrokeColor = "none",
  HISTOGRAMMouseUpStrokeWidth = "none",
  HISTOGRAMMouseOverDisplay = FALSE,
  HISTOGRAMMouseOverColor = "red",
  HISTOGRAMMouseOverOpacity = 1,
  HISTOGRAMMouseOverStrokeColor = "none",
  HISTOGRAMMouseOverStrokeWidth = "none",
  HISTOGRAMMouseOverTooltipsSetting = "style1",
  HISTOGRAMMouseOverTooltipsHtml = " ",
  HISTOGRAMMouseOverTooltipsPosition = "absolute",
  HISTOGRAMMouseOverTooltipsBackgroundColor = "white",
  HISTOGRAMMouseOverTooltipsBorderStyle = "solid",
  HISTOGRAMMouseOverTooltipsBorderWidth = 0,
  HISTOGRAMMouseOverTooltipsPadding = "3px",
  HISTOGRAMMouseOverTooltipsBorderRadius = "3px",
  HISTOGRAMMouseOverTooltipsOpacity = 1,
  LINEMouseEvent = TRUE,
  LINEMouseClickDisplay = FALSE,
  LINEMouseClickLineOpacity = 1,
  LINEMouseClickLineStrokeColor = "none",
  LINEMouseClickLineStrokeWidth = "none",
  LINEMouseDownDisplay = FALSE,
  LINEMouseDownLineOpacity = 1,
  LINEMouseDownLineStrokeColor = "none",
  LINEMouseDownLineStrokeWidth = "none",
  LINEMouseEnterDisplay = FALSE,
  LINEMouseEnterLineOpacity = 1,
  LINEMouseEnterLineStrokeColor = "none",
  LINEMouseEnterLineStrokeWidth = "none",
  LINEMouseLeaveDisplay = FALSE,
  LINEMouseLeaveLineOpacity = 1,
  LINEMouseLeaveLineStrokeColor = "none",
  LINEMouseLeaveLineStrokeWidth = "none",
  LINEMouseMoveDisplay = FALSE,
  LINEMouseMoveLineOpacity = 1,
  LINEMouseMoveLineStrokeColor = "none",
  LINEMouseMoveLineStrokeWidth = "none",
  LINEMouseOutDisplay = FALSE,
  LINEMouseOutAnimationTime = 500,
  LINEMouseOutLineOpacity = 1,
  LINEMouseOutLineStrokeColor = "none",
  LINEMouseOutLineStrokeWidth = "none",
  LINEMouseUpDisplay = FALSE,
  LINEMouseUpLineOpacity = 1,
  LINEMouseUpLineStrokeColor = "none",
  LINEMouseUpLineStrokeWidth = "none",
  LINEMouseOverDisplay = FALSE,
  LINEMouseOverLineOpacity = 1,
  LINEMouseOverLineStrokeColor = "none",
  LINEMouseOverLineStrokeWidth = "none",
  LINEMouseOverTooltipsSetting = "style1",
  LINEMouseOverTooltipsHtml = " ",
  LINEMouseOverTooltipsPosition = "absolute",
  LINEMouseOverTooltipsBackgroundColor = "white",
  LINEMouseOverTooltipsBorderStyle = "solid",
  LINEMouseOverTooltipsBorderWidth = 0,
  LINEMouseOverTooltipsPadding = "3px",
  LINEMouseOverTooltipsBorderRadius = "3px",
  LINEMouseOverTooltipsOpacity = 1,
  WIGMouseEvent = TRUE,
  WIGMouseClickDisplay = FALSE,
  WIGMouseClickLineOpacity = 1,
  WIGMouseClickLineStrokeColor = "none",
  WIGMouseClickLineStrokeWidth = "none",
  WIGMouseClickFillColor = "none",
  WIGMouseDownDisplay = FALSE,
  WIGMouseDownLineOpacity = 1,
  WIGMouseDownLineStrokeColor = "none",
  WIGMouseDownLineStrokeWidth = "none",
  WIGMouseDownFillColor = "none",
  WIGMouseEnterDisplay = FALSE,
  WIGMouseEnterLineOpacity = 1,
  WIGMouseEnterLineStrokeColor = "none",
  WIGMouseEnterLineStrokeWidth = "none",
  WIGMouseEnterFillColor = "none",
  WIGMouseLeaveDisplay = FALSE,
  WIGMouseLeaveLineOpacity = 1,
  WIGMouseLeaveLineStrokeColor = "none",
  WIGMouseLeaveLineStrokeWidth = "none",
  WIGMouseLeaveFillColor = "none",
  WIGMouseMoveDisplay = FALSE,
  WIGMouseMoveLineOpacity = 1,
  WIGMouseMoveLineStrokeColor = "none",
  WIGMouseMoveLineStrokeWidth = "none",
  WIGMouseMoveFillColor = "none",
  WIGMouseOutDisplay = FALSE,
  WIGMouseOutAnimationTime = 500,
  WIGMouseOutLineOpacity = 1,
  WIGMouseOutLineStrokeColor = "none",
  WIGMouseOutLineStrokeWidth = "none",
  WIGMouseOutFillColor = "none",
  WIGMouseUpDisplay = FALSE,
  WIGMouseUpLineOpacity = 1,
  WIGMouseUpLineStrokeColor = "none",
  WIGMouseUpLineStrokeWidth = "none",
  WIGMouseUpFillColor = "none",
  WIGMouseOverDisplay = FALSE,
  WIGMouseOverLineOpacity = 1,
  WIGMouseOverLineStrokeColor = "none",
  WIGMouseOverLineStrokeWidth = "none",
  WIGMouseOverFillColor = "none",
  WIGMouseOverTooltipsSetting = "style1",
  WIGMouseOverTooltipsHtml = " ",
  WIGMouseOverTooltipsPosition = "absolute",
  WIGMouseOverTooltipsBackgroundColor = "white",
  WIGMouseOverTooltipsBorderStyle = "solid",
  WIGMouseOverTooltipsBorderWidth = 0,
  WIGMouseOverTooltipsPadding = "3px",
  WIGMouseOverTooltipsBorderRadius = "3px",
  WIGMouseOverTooltipsOpacity = 1,
  SCATTERxlink = FALSE,
  SCATTERMouseEvent = TRUE,
  SCATTERMouseClickDisplay = FALSE,
  SCATTERMouseClickColor = "red",
  SCATTERMouseClickCircleSize = 2,
  SCATTERMouseClickCircleOpacity = 1,
  SCATTERMouseClickCircleStrokeColor = "none",
  SCATTERMouseClickCircleStrokeWidth = "none",
  SCATTERMouseClickTextFromData = "fourth",
  SCATTERMouseClickTextOpacity = 1,
  SCATTERMouseClickTextColor = "red",
  SCATTERMouseClickTextSize = 8,
  SCATTERMouseClickTextPostionX = 1,
  SCATTERMouseClickTextPostionY = 10,
  SCATTERMouseClickTextDrag = TRUE,
  SCATTERMouseDownDisplay = FALSE,
  SCATTERMouseDownColor = "red",
  SCATTERMouseDownCircleSize = 2,
  SCATTERMouseDownCircleOpacity = 1,
  SCATTERMouseDownCircleStrokeColor = "none",
  SCATTERMouseDownCircleStrokeWidth = "none",
  SCATTERMouseEnterDisplay = FALSE,
  SCATTERMouseEnterColor = "red",
  SCATTERMouseEnterCircleSize = 2,
  SCATTERMouseEnterCircleOpacity = 1,
  SCATTERMouseEnterCircleStrokeColor = "none",
  SCATTERMouseEnterCircleStrokeWidth = "none",
  SCATTERMouseLeaveDisplay = FALSE,
  SCATTERMouseLeaveColor = "red",
  SCATTERMouseLeaveCircleSize = 2,
  SCATTERMouseLeaveCircleOpacity = 1,
  SCATTERMouseLeaveCircleStrokeColor = "none",
  SCATTERMouseLeaveCircleStrokeWidth = "none",
  SCATTERMouseMoveDisplay = FALSE,
  SCATTERMouseMoveColor = "red",
  SCATTERMouseMoveCircleSize = 2,
  SCATTERMouseMoveCircleOpacity = 1,
  SCATTERMouseMoveCircleStrokeColor = "none",
  SCATTERMouseMoveCircleStrokeWidth = "none",
  SCATTERMouseOutDisplay = FALSE,
  SCATTERMouseOutAnimationTime = 500,
  SCATTERMouseOutColor = "red",
  SCATTERMouseOutCircleSize = 2,
  SCATTERMouseOutCircleOpacity = 1,
  SCATTERMouseOutCircleStrokeColor = "none",
  SCATTERMouseOutCircleStrokeWidth = "none",
  SCATTERMouseUpDisplay = FALSE,
  SCATTERMouseUpColor = "red",
  SCATTERMouseUpCircleSize = 2,
  SCATTERMouseUpCircleOpacity = 1,
  SCATTERMouseUpCircleStrokeColor = "none",
  SCATTERMouseUpCircleStrokeWidth = "none",
  SCATTERMouseOverDisplay = FALSE,
  SCATTERMouseOverColor = "red",
  SCATTERMouseOverCircleSize = 2,
  SCATTERMouseOverCircleOpacity = 1,
  SCATTERMouseOverCircleStrokeColor = "none",
  SCATTERMouseOverCircleStrokeWidth = "none",
  SCATTERMouseOverTooltipsSetting = "style1",
  SCATTERMouseOverTooltipsHtml = " ",
  SCATTERMouseOverTooltipsPosition = "absolute",
  SCATTERMouseOverTooltipsBackgroundColor = "white",
  SCATTERMouseOverTooltipsBorderStyle = "solid",
  SCATTERMouseOverTooltipsBorderWidth = 0,
  SCATTERMouseOverTooltipsPadding = "3px",
  SCATTERMouseOverTooltipsBorderRadius = "3px",
  SCATTERMouseOverTooltipsOpacity = 1,
  ARCxlink = FALSE,
  ARCMouseEvent = TRUE,
  ARCMouseClickDisplay = FALSE,
  ARCMouseClickColor = "red",
  ARCMouseClickArcOpacity = 1,
  ARCMouseClickArcStrokeColor = "none",
  ARCMouseClickArcStrokeWidth = "none",
  ARCMouseClickTextFromData = "fourth",
  ARCMouseClickTextOpacity = 1,
  ARCMouseClickTextColor = "red",
  ARCMouseClickTextSize = 8,
  ARCMouseClickTextPostionX = 1,
  ARCMouseClickTextPostionY = 10,
  ARCMouseClickTextDrag = TRUE,
  ARCMouseDownDisplay = FALSE,
  ARCMouseDownColor = "red",
  ARCMouseDownArcOpacity = 1,
  ARCMouseDownArcStrokeColor = "none",
  ARCMouseDownArcStrokeWidth = "none",
  ARCMouseEnterDisplay = FALSE,
  ARCMouseEnterColor = "red",
  ARCMouseEnterArcOpacity = 1,
  ARCMouseEnterArcStrokeColor = "none",
  ARCMouseEnterArcStrokeWidth = "none",
  ARCMouseLeaveDisplay = FALSE,
  ARCMouseLeaveColor = "red",
  ARCMouseLeaveArcOpacity = 1,
  ARCMouseLeaveArcStrokeColor = "none",
  ARCMouseLeaveArcStrokeWidth = "none",
  ARCMouseMoveDisplay = FALSE,
  ARCMouseMoveColor = "red",
  ARCMouseMoveArcOpacity = 1,
  ARCMouseMoveArcStrokeColor = "none",
  ARCMouseMoveArcStrokeWidth = "none",
  ARCMouseOutDisplay = FALSE,
  ARCMouseOutAnimationTime = 500,
  ARCMouseOutColor = "red",
  ARCMouseOutArcOpacity = 1,
  ARCMouseOutArcStrokeColor = "none",
  ARCMouseOutArcStrokeWidth = "none",
  ARCMouseUpDisplay = FALSE,
  ARCMouseUpColor = "red",
  ARCMouseUpArcOpacity = 1,
  ARCMouseUpArcStrokeColor = "none",
  ARCMouseUpArcStrokeWidth = "none",
  ARCMouseOverDisplay = FALSE,
  ARCMouseOverColor = "red",
  ARCMouseOverArcOpacity = 1,
  ARCMouseOverArcStrokeColor = "none",
  ARCMouseOverArcStrokeWidth = "none",
  ARCMouseOverTooltipsSetting = "style1",
  ARCMouseOverTooltipsHtml = " ",
  ARCMouseOverTooltipsPosition = "absolute",
  ARCMouseOverTooltipsBackgroundColor = "white",
  ARCMouseOverTooltipsBorderStyle = "solid",
  ARCMouseOverTooltipsBorderWidth = 0,
  ARCMouseOverTooltipsPadding = "3px",
  ARCMouseOverTooltipsBorderRadius = "3px",
  ARCMouseOverTooltipsOpacity = 1,
  GENExlink = FALSE,
  GENEMouseEvent = TRUE,
  GENEMouseClickDisplay = FALSE,
  GENEMouseClickColor = "red",
  GENEMouseClickArcOpacity = 1,
  GENEMouseClickArcStrokeColor = "none",
  GENEMouseClickArcStrokeWidth = "none",
  GENEMouseClickTextFromData = "fourth",
  GENEMouseClickTextOpacity = 1,
  GENEMouseClickTextColor = "red",
  GENEMouseClickTextSize = 8,
  GENEMouseClickTextPostionX = 1,
  GENEMouseClickTextPostionY = 10,
  GENEMouseClickTextDrag = TRUE,
  GENEMouseDownDisplay = FALSE,
  GENEMouseDownColor = "red",
  GENEMouseDownArcOpacity = 1,
  GENEMouseDownArcStrokeColor = "none",
  GENEMouseDownArcStrokeWidth = "none",
  GENEMouseEnterDisplay = FALSE,
  GENEMouseEnterColor = "red",
  GENEMouseEnterArcOpacity = 1,
  GENEMouseEnterArcStrokeColor = "none",
  GENEMouseEnterArcStrokeWidth = "none",
  GENEMouseLeaveDisplay = FALSE,
  GENEMouseLeaveColor = "red",
  GENEMouseLeaveArcOpacity = 1,
  GENEMouseLeaveArcStrokeColor = "none",
  GENEMouseLeaveArcStrokeWidth = "none",
  GENEMouseMoveDisplay = FALSE,
  GENEMouseMoveColor = "red",
  GENEMouseMoveArcOpacity = 1,
  GENEMouseMoveArcStrokeColor = "none",
  GENEMouseMoveArcStrokeWidth = "none",
  GENEMouseOutDisplay = FALSE,
  GENEMouseOutAnimationTime = 500,
  GENEMouseOutColor = "red",
  GENEMouseOutArcOpacity = 1,
  GENEMouseOutArcStrokeColor = "none",
  GENEMouseOutArcStrokeWidth = "none",
  GENEMouseUpDisplay = FALSE,
  GENEMouseUpColor = "red",
  GENEMouseUpArcOpacity = 1,
  GENEMouseUpArcStrokeColor = "none",
  GENEMouseUpArcStrokeWidth = "none",
  GENEMouseOverDisplay = FALSE,
  GENEMouseOverColor = "red",
  GENEMouseOverArcOpacity = 1,
  GENEMouseOverArcStrokeColor = "none",
  GENEMouseOverArcStrokeWidth = "none",
  GENEMouseOverTooltipsSetting = "style1",
  GENEMouseOverTooltipsHtml = " ",
  GENEMouseOverTooltipsPosition = "absolute",
  GENEMouseOverTooltipsBackgroundColor = "white",
  GENEMouseOverTooltipsBorderStyle = "solid",
  GENEMouseOverTooltipsBorderWidth = 0,
  GENEMouseOverTooltipsPadding = "3px",
  GENEMouseOverTooltipsBorderRadius = "3px",
  GENEMouseOverTooltipsOpacity = 1,
  LOLLIPOPxlink = FALSE,
  LOLLIPOPMouseEvent = TRUE,
  LOLLIPOPMouseClickDisplay = FALSE,
  LOLLIPOPMouseClickColor = "red",
  LOLLIPOPMouseClickCircleSize = 2,
  LOLLIPOPMouseClickCircleOpacity = 1,
  LOLLIPOPMouseClickCircleStrokeColor = "none",
  LOLLIPOPMouseClickCircleStrokeWidth = "none",
  LOLLIPOPMouseClickTextFromData = "fourth",
  LOLLIPOPMouseClickTextOpacity = 1,
  LOLLIPOPMouseClickTextColor = "red",
  LOLLIPOPMouseClickTextSize = 8,
  LOLLIPOPMouseClickTextPostionX = 1,
  LOLLIPOPMouseClickTextPostionY = 10,
  LOLLIPOPMouseClickTextDrag = TRUE,
  LOLLIPOPMouseDownDisplay = FALSE,
  LOLLIPOPMouseDownColor = "red",
  LOLLIPOPMouseDownCircleSize = 2,
  LOLLIPOPMouseDownCircleOpacity = 1,
  LOLLIPOPMouseDownCircleStrokeColor = "none",
  LOLLIPOPMouseDownCircleStrokeWidth = "none",
  LOLLIPOPMouseEnterDisplay = FALSE,
  LOLLIPOPMouseEnterColor = "red",
  LOLLIPOPMouseEnterCircleSize = 2,
  LOLLIPOPMouseEnterCircleOpacity = 1,
  LOLLIPOPMouseEnterCircleStrokeColor = "none",
  LOLLIPOPMouseEnterCircleStrokeWidth = "none",
  LOLLIPOPMouseLeaveDisplay = FALSE,
  LOLLIPOPMouseLeaveColor = "red",
  LOLLIPOPMouseLeaveCircleSize = 2,
  LOLLIPOPMouseLeaveCircleOpacity = 1,
  LOLLIPOPMouseLeaveCircleStrokeColor = "none",
  LOLLIPOPMouseLeaveCircleStrokeWidth = "none",
  LOLLIPOPMouseMoveDisplay = FALSE,
  LOLLIPOPMouseMoveColor = "red",
  LOLLIPOPMouseMoveCircleSize = 2,
  LOLLIPOPMouseMoveCircleOpacity = 1,
  LOLLIPOPMouseMoveCircleStrokeColor = "none",
  LOLLIPOPMouseMoveCircleStrokeWidth = "none",
  LOLLIPOPMouseOutDisplay = FALSE,
  LOLLIPOPMouseOutAnimationTime = 500,
  LOLLIPOPMouseOutColor = "red",
  LOLLIPOPMouseOutCircleSize = 2,
  LOLLIPOPMouseOutCircleOpacity = 1,
  LOLLIPOPMouseOutCircleStrokeColor = "none",
  LOLLIPOPMouseOutCircleStrokeWidth = "none",
  LOLLIPOPMouseUpDisplay = FALSE,
  LOLLIPOPMouseUpColor = "red",
  LOLLIPOPMouseUpCircleSize = 2,
  LOLLIPOPMouseUpCircleOpacity = 1,
  LOLLIPOPMouseUpCircleStrokeColor = "none",
  LOLLIPOPMouseUpCircleStrokeWidth = "none",
  LOLLIPOPMouseOverDisplay = FALSE,
  LOLLIPOPMouseOverColor = "red",
  LOLLIPOPMouseOverCircleSize = 2,
  LOLLIPOPMouseOverCircleOpacity = 1,
  LOLLIPOPMouseOverCircleStrokeColor = "none",
  LOLLIPOPMouseOverCircleStrokeWidth = "none",
  LOLLIPOPMouseOverTooltipsSetting = "style1",
  LOLLIPOPMouseOverTooltipsHtml = " ",
  LOLLIPOPMouseOverTooltipsPosition = "absolute",
  LOLLIPOPMouseOverTooltipsBackgroundColor = "white",
  LOLLIPOPMouseOverTooltipsBorderStyle = "solid",
  LOLLIPOPMouseOverTooltipsBorderWidth = 0,
  LOLLIPOPMouseOverTooltipsPadding = "3px",
  LOLLIPOPMouseOverTooltipsBorderRadius = "3px",
  LOLLIPOPMouseOverTooltipsOpacity = 1,
  elementId = NULL,
  ...
)

Arguments

moduleList

Module list displayed in plot.

genome

Could be either 'hg19', which is defaultly set to use chromosomes of hg19, or a list of chromosomes with length, for example, list("chr1"=100,"chr2"=200).

genome2

Second genome when compare module is applied, format is same as genome

genomeFillColor

Could be either a color palette from RColorBrewer, or a list of color name, for example, list("yellow","rgb(1,255,255)")

chrPad

Distance between each chromosome, default is 0.04

width, height

The width and height for svg element, could be px or percent or auto.

innerRadius

Default 216, Inner radius of chromosome

outerRadius

Default 240, Outer radius of chromosome

svgClassName

The svg class name

displayGenomeBorder, genomeBorderColor, genomeBorderSize

Should the reference genome have borders?

genomeTicksDisplay, genomeTicksLen, genomeTicksColor, genomeTicksTextSize, genomeTicksTextColor, genomeTicksScale, genomeTicksRealLength, genomeTicksOffset

Whether display the ticks for chromosome panel. Other parameters only works when genomeTicksDisplay is TRUE and their details are available on document.

genomeLabelDisplay, genomeLabelTextSize, genomeLabelTextColor, genomeLabelDx, genomeLabelDy

Whether display the label for chromosome panel. Other parameters only works when genomeTicksDisplay is TRUE and their details are available on document.

compareEvent

Default False, open/not COMPARE module

compareEventGroupGapRate

Default 0.1, control the two-side gap rate on each group of genome

compareEventGroupDistance

Default 0, distance between two groups of genome

zoom

Whether or not the plot is zoomable?

TEXTModuleDragEvent

Are text annotations draggable?

CNVxlink

Default False, add/not xlink for CNV module

CNVMouseEvent

Default True, open/not open mouse event of CNV module

CNVMouseClickDisplay

Default False, show/not the tooltip when mouse click on a CNV point.

CNVMouseClickColor

Color when mouse clicking

CNVMouseClickArcOpacity

Arc opacity when mouse clicking the element

CNVMouseClickArcStrokeColor

Arc stroke color when mouse clicking the element

CNVMouseClickArcStrokeWidth

Arc stroke width when mouse clicking the element

CNVMouseClickTextFromData

Text column when mouse clicking the element

CNVMouseClickTextOpacity

Text opacity when mouse clicking the element

CNVMouseClickTextColor

Text color when mouse clicking the element

CNVMouseClickTextSize

Text size when mouse clicking the element

CNVMouseClickTextPostionX, CNVMouseClickTextPostionY

Text coordinates when mouse clicking the element

CNVMouseClickTextDrag

Whether text is draggable when mouse clicking the element

CNVMouseDownDisplay

Default False, show/not the tooltip when mouse click down a CNV point.

CNVMouseDownColor

Color when mouse moving down the element

CNVMouseDownArcOpacity

Arc opacity when mouse moving down the element

CNVMouseDownArcStrokeColor

Arc stroke color when mouse moving down the element

CNVMouseDownArcStrokeWidth

Arc stroke width when mouse moving down the element

CNVMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a CNV point.

CNVMouseEnterColor

Color when mouse entering the element

CNVMouseEnterArcOpacity

Arc opacity when mouse entering the element

CNVMouseEnterArcStrokeColor

Arc stroke color when mouse entering the element

CNVMouseEnterArcStrokeWidth

Arc stroke width when mouse entering the element

CNVMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a CNV point.

CNVMouseLeaveColor

Color when mouse leaving the element

CNVMouseLeaveArcOpacity

Arc opacity when mouse leaving the element

CNVMouseLeaveArcStrokeColor

Arc stroke color when mouse leaving the element

CNVMouseLeaveArcStrokeWidth

Arc stroke width when mouse leaving the element

CNVMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a CNV point.

CNVMouseMoveColor

Color when mouse moving in the element

CNVMouseMoveArcOpacity

Arc opacity when mouse moving in the element

CNVMouseMoveArcStrokeColor

Arc stroke color when mouse moving in the element

CNVMouseMoveArcStrokeWidth

Arc stroke width when mouse moving in the element

CNVMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a CNV point anymore.

CNVMouseOutAnimationTime

Animation time when mouse moving out the element

CNVMouseOutColor

Color when mouse moving out the element

CNVMouseOutArcOpacity

Arc opacity when mouse moving out the element

CNVMouseOutArcStrokeColor

Arc stroke color when mouse moving out the element

CNVMouseOutArcStrokeWidth

Arc stroke width when mouse moving out the element

CNVMouseUpDisplay

Default False, show/not the tooltip when mouse click up a CNV point.

CNVMouseUpColor

Color when mouse moving up the element

CNVMouseUpArcOpacity

Arc opacity when mouse clicking the element

CNVMouseUpArcStrokeColor

Arc stroke color when mouse clicking the element

CNVMouseUpArcStrokeWidth

Arc stroke width when mouse clicking the element

CNVMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a CNV point.

CNVMouseOverColor

Color when mouse moving over the element

CNVMouseOverArcOpacity

Arc opacity when mouse moving over the element

CNVMouseOverArcStrokeColor

Arc stroke color when mouse moving over the element

CNVMouseOverArcStrokeWidth

Arc stroke width when mouse moving over the element

CNVMouseOverTooltipsSetting

Default "style1"

CNVMouseOverTooltipsHtml

Default " "

CNVMouseOverTooltipsPosition

Default "absolute"

CNVMouseOverTooltipsBackgroundColor

Default "white"

CNVMouseOverTooltipsBorderStyle

Default "solid"

CNVMouseOverTooltipsBorderWidth

Default 0

CNVMouseOverTooltipsPadding

Default "3px"

CNVMouseOverTooltipsBorderRadius

Default "3px"

CNVMouseOverTooltipsOpacity

Default 0.8

HEATMAPMouseEvent

Default True, open/not open mouse event of HEATMAP module

HEATMAPMouseClickDisplay

Default False, show/not the tooltip when mouse click on a HEATMAP point.

HEATMAPMouseClickColor

Color when mouse clicking

HEATMAPMouseClickOpacity

Opacity when mouse clicking

HEATMAPMouseClickStrokeColor

Stroke color when mouse clicking

HEATMAPMouseClickStrokeWidth

Stroke width when mouse clicking

HEATMAPMouseDownDisplay

Default False, show/not the tooltip when mouse click down a HEATMAP point.

HEATMAPMouseDownColor

Color when mouse moving down the element

HEATMAPMouseDownOpacity

Opacity when mouse moving down the element

HEATMAPMouseDownStrokeColor

Stroke color when mouse moving down the element

HEATMAPMouseDownStrokeWidth

Stroke width when mouse moving down the element

HEATMAPMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a HEATMAP point.

HEATMAPMouseEnterColor

Color when mouse entering the element

HEATMAPMouseEnterOpacity

Opacity when mouse entering the element

HEATMAPMouseEnterStrokeColor

Stroke color when mouse entering the element

HEATMAPMouseEnterStrokeWidth

Stroke width when mouse entering the element

HEATMAPMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a HEATMAP point.

HEATMAPMouseLeaveColor

Color when mouse leaving the element

HEATMAPMouseLeaveOpacity

Opacity when mouse leaving the element

HEATMAPMouseLeaveStrokeColor

Stroke color when mouse leaving the element

HEATMAPMouseLeaveStrokeWidth

Stroke width when mouse leaving the element

HEATMAPMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a HEATMAP point.

HEATMAPMouseMoveColor

Color when mouse moving in the element

HEATMAPMouseMoveOpacity

Opacity when mouse moving in the element

HEATMAPMouseMoveStrokeColor

Stroke color when mouse moving in the element

HEATMAPMouseMoveStrokeWidth

Stroke width when mouse moving in the element

HEATMAPMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a HEATMAP point anymore.

HEATMAPMouseOutAnimationTime

Animation time when mouse moving out the element

HEATMAPMouseOutColor

Color when mouse moving out the element

HEATMAPMouseOutOpacity

Opacity when mouse moving out the element

HEATMAPMouseOutStrokeColor

Stroke color when mouse moving out the element

HEATMAPMouseOutStrokeWidth

Stroke width when mouse moving out the element

HEATMAPMouseUpDisplay

Default False, show/not the tooltip when mouse click up a HEATMAP point.

HEATMAPMouseUpColor

Color when mouse moving up the element

HEATMAPMouseUpOpacity

Opacity when mouse moving up the element

HEATMAPMouseUpStrokeColor

Stroke color when mouse moving up the element

HEATMAPMouseUpStrokeWidth

Stroke width when mouse moving up the element

HEATMAPMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a HEATMAP point.

HEATMAPMouseOverColor

Color when mouse moving over the element

HEATMAPMouseOverOpacity

Opacity when mouse moving over the element

HEATMAPMouseOverStrokeColor

Stroke color when mouse moving over the element

HEATMAPMouseOverStrokeWidth

Stroke width when mouse moving over the element

HEATMAPMouseOverTooltipsSetting

Default "style1"

HEATMAPMouseOverTooltipsHtml

Default " "

HEATMAPMouseOverTooltipsPosition

Default "absolute"

HEATMAPMouseOverTooltipsBackgroundColor

Default "white"

HEATMAPMouseOverTooltipsBorderStyle

Default "solid"

HEATMAPMouseOverTooltipsBorderWidth

Default 0

HEATMAPMouseOverTooltipsPadding

Default "3px"

HEATMAPMouseOverTooltipsBorderRadius

Default "3px"

HEATMAPMouseOverTooltipsOpacity

Default 0.8

BUBBLExlink

Default False, add/not xlink for BUBBLE module

BUBBLEMouseEvent

Default True, open/not open mouse event of BUBBLE module

BUBBLEMouseClickDisplay

Default False, show/not the tooltip when mouse click on a BUBBLE point.

BUBBLEMouseClickColor

Color when mouse clicking

BUBBLEMouseClickOpacity

Opacity when mouse clicking

BUBBLEMouseClickStrokeColor

Stroke color when mouse clicking

BUBBLEMouseClickStrokeWidth

Stroke width when mouse clicking

BUBBLEMouseDownDisplay

Default False, show/not the tooltip when mouse click down a BUBBLE point.

BUBBLEMouseDownColor

Color when mouse moving down the element

BUBBLEMouseDownOpacity

Opacity when mouse moving down the element

BUBBLEMouseDownStrokeColor

Stroke color when mouse moving down the element

BUBBLEMouseDownStrokeWidth

Stroke width when mouse moving down the element

BUBBLEMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a BUBBLE point.

BUBBLEMouseEnterColor

Color when mouse entering the element

BUBBLEMouseEnterOpacity

Opacity when mouse entering the element

BUBBLEMouseEnterStrokeColor

Stroke color when mouse entering the element

BUBBLEMouseEnterStrokeWidth

Stroke width when mouse entering the element

BUBBLEMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a BUBBLE point.

BUBBLEMouseLeaveColor

Color when mouse leaving the element

BUBBLEMouseLeaveOpacity

Opacity when mouse leaving the element

BUBBLEMouseLeaveStrokeColor

Stroke color when mouse leaving the element

BUBBLEMouseLeaveStrokeWidth

Stroke width when mouse leaving the element

BUBBLEMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a BUBBLE point.

BUBBLEMouseMoveColor

Color when mouse moving in the element

BUBBLEMouseMoveOpacity

Opacity when mouse moving in the element

BUBBLEMouseMoveStrokeColor

Stroke color when mouse moving in the element

BUBBLEMouseMoveStrokeWidth

Stroke width when mouse moving in the element

BUBBLEMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a BUBBLE point anymore.

BUBBLEMouseOutAnimationTime

Animation time when mouse moving out the element

BUBBLEMouseOutColor

Color when mouse moving out the element

BUBBLEMouseOutOpacity

Opacity when mouse moving out the element

BUBBLEMouseOutStrokeColor

Stroke color when mouse moving out the element

BUBBLEMouseOutStrokeWidth

Stroke width when mouse moving out the element

BUBBLEMouseUpDisplay

Default False, show/not the tooltip when mouse click up a BUBBLE point.

BUBBLEMouseUpColor

Color when mouse moving up the element

BUBBLEMouseUpOpacity

Opacity when mouse moving up the element

BUBBLEMouseUpStrokeColor

Stroke color when mouse moving up the element

BUBBLEMouseUpStrokeWidth

Stroke width when mouse moving up the element

BUBBLEMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a BUBBLE point.

BUBBLEMouseOverColor

Color when mouse moving over the element

BUBBLEMouseOverOpacity

Opacity when mouse moving over the element

BUBBLEMouseOverStrokeColor

Stroke color when mouse moving over the element

BUBBLEMouseOverStrokeWidth

Stroke width when mouse moving over the element

BUBBLEMouseOverTooltipsSetting

Default "style1"

BUBBLEMouseOverTooltipsHtml

Default " "

BUBBLEMouseOverTooltipsPosition

Default "absolute"

BUBBLEMouseOverTooltipsBackgroundColor

Default "white"

BUBBLEMouseOverTooltipsBorderStyle

Default "solid"

BUBBLEMouseOverTooltipsBorderWidth

Default 0

BUBBLEMouseOverTooltipsPadding

Default "3px"

BUBBLEMouseOverTooltipsBorderRadius

Default "3px"

BUBBLEMouseOverTooltipsOpacity

Default 0.8

SNPxlink

Default False, add/not xlink for SNP module

SNPMouseEvent

Default True, open/not open mouse event of SNP module

SNPMouseCombinationEvent

Default False, open/not COMBINATION module for SNP module

SNPMouseCombinationImageDisplay

Defalut False, open/not image display in COMBINATION module for SNP module

SNPMouseCombinationImageTitle

Title of the image

SNPMouseCombinationImageTitleSize, SNPMouseCombinationImageTitleWeight, SNPMouseCombinationImageTitleColor

Size, weight and color of the title

SNPMouseCombinationImagePositionX, SNPMouseCombinationImagePositionY

Coordinates for image

SNPMouseCombinationImageHeight, SNPMouseCombinationImageWidth

Height and width of image

SNPMouseCombinationGraphDisplay

Defalut False, open/not graph display in COMBINATION module for SNP module

SNPMouseCombinationGraphTitle

Title of the graph

SNPMouseCombinationGraphTitleSize, SNPMouseCombinationGraphTitleWeight, SNPMouseCombinationGraphTitleColor

Size, weight and color of the title

SNPMouseCombinationGraphType

Type of graph

SNPMouseCombinationGraphPositionX, SNPMouseCombinationGraphPositionY

Coordinates for graph

SNPMouseCombinationGraphHeight, SNPMouseCombinationGraphWidth

Height and width for graph

SNPMouseCombinationGraphHistogramBarColor

Bar color of histogram graph

SNPMouseCombinationGraphHistogramPadding

Padding between bar of histogram graph

SNPMouseCombinationGraphHistogramPositionCorrectX

Correction distance of X axis in histogram

SNPMouseCombinationGraphPieAutoColor

Whether use auto color for pie graph or not

SNPMouseCombinationGraphPieColor

Color for pie graph if auto color is false

SNPMouseCombinationGraphPieSize

Size of pie graph

SNPMouseCombinationGraphPieStroke

Whether each pie has a stroke or not

SNPMouseCombinationGraphPieStrokeColor, SNPMouseCombinationGraphPieStrokeWidth

The stroke color and width for pie graph

SNPMouseCombinationGraphPieOpacity

Opacity for pie graph

SNPMouseCombinationGraphLineType, SNPMouseCombinationGraphLineColor, SNPMouseCombinationGraphLineWidth

Line type, color and width for line graph

SNPMouseCombinationGraphLinePoint

Whether display the broken point in line graph

SNPMouseCombinationGraphLinePointSize

Size of broken point

SNPMouseCombinationGraphLinePointAutoColor

Whether display the broken point in auto color

SNPMouseCombinationGraphLinePointColor

Color for broken point if auto color is false

SNPMouseCombinationGraphLinePointStroke

Whether display the broken point stroke

SNPMouseCombinationGraphLinePointStrokeColor, SNPMouseCombinationGraphLinePointStrokeWidth

The stroke color and width for broken point

SNPMouseCombinationGraphLinePointOpacity

Opacity for broken line

SNPMouseCombinationGraphLinePositionCorrectX

Correction distance of X axis for line

SNPMouseCombinationTextDisplay

Defalut False, open/not text display in COMBINATION module for SNP module

SNPMouseCombinationTextColor, SNPMouseCombinationTextSize, SNPMouseCombinationTextWeight

The color, size and weight for text

SNPMouseCombinationTextPositionCorrectX, SNPMouseCombinationTextPositionCorrectY

The coordinates for text

SNPMouseClickDisplay

Default False, show/not the tooltip when mouse click on a SNP point.

SNPMouseClickColor

Color after clicking the element

SNPMouseClickCircleSize

Circle size after clicking the element

SNPMouseClickCircleOpacity

Opacity after clicking the element

SNPMouseClickCircleStrokeColor

Stroke color after clicking the element

SNPMouseClickCircleStrokeWidth

Stroke width after clicking the element

SNPMouseClickTextFromData

First,second,third,fourth column data click to show

SNPMouseClickTextOpacity

Text opacity after clicking the element

SNPMouseClickTextColor

Text color after clicking the element

SNPMouseClickTextSize

Text size after clicking the element

SNPMouseClickTextPostionX, SNPMouseClickTextPostionY

Text coordinate after clicking the element

SNPMouseClickTextDrag

Whether text is draggable for element

SNPMouseDownDisplay

Default False, show/not the tooltip when mouse click down a SNP point.

SNPMouseDownColor

Color after mouse moving down the element

SNPMouseDownCircleSize

Circle size after mouse moving down the element

SNPMouseDownCircleOpacity

Circle opacity after mouse moving down the element

SNPMouseDownCircleStrokeColor

Circle stroke color after mouse moving down the element

SNPMouseDownCircleStrokeWidth

Circle stroke width after mouse moving down the element

SNPMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a SNP point.

SNPMouseEnterColor

Color after mouse entering enter the element

SNPMouseEnterCircleSize

Circle size after mouse entering the element

SNPMouseEnterCircleOpacity

Circle opacity after mouse entering the element

SNPMouseEnterCircleStrokeColor

Circle stroke color after mouse entering the element

SNPMouseEnterCircleStrokeWidth

Circle stroke width after mouse entering the element

SNPMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a SNP point.

SNPMouseLeaveColor

Color after mouse leaving the element

SNPMouseLeaveCircleSize

Circle size after mouse leaving the element

SNPMouseLeaveCircleOpacity

Circle opacity after mouse leaving the element

SNPMouseLeaveCircleStrokeColor

Circle stroke color after mouse leaving the element

SNPMouseLeaveCircleStrokeWidth

Circle stroke width after mouse leaving the element

SNPMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a SNP point.

SNPMouseMoveColor

Color after mouse moving in the element

SNPMouseMoveCircleSize

Circle size after mouse moving in the element

SNPMouseMoveCircleOpacity

Circle opacity after mouse moving in the element

SNPMouseMoveCircleStrokeColor

Circle stroke color after mouse moving in the element

SNPMouseMoveCircleStrokeWidth

Circle stroke width after mouse moving in the element

SNPMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a SNP point anymore.

SNPMouseOutAnimationTime

Animation time when mouse moving over the element

SNPMouseOutColor

Color when mouse moving over the element

SNPMouseOutCircleSize

Circle size when mouse moving over the element

SNPMouseOutCircleOpacity

Opacity when mouse moving over the element

SNPMouseOutCircleStrokeColor

Stroke color when mouse moving over the element

SNPMouseOutCircleStrokeWidth

Stroke width when mouse moving over the element

SNPMouseUpDisplay

Default False, show/not the tooltip when mouse click up a SNP point.

SNPMouseUpColor

Color after mouse moving up the element

SNPMouseUpCircleSize

Circle size after mouse moving up the element

SNPMouseUpCircleOpacity

Circle opacity after mouse moving up the element

SNPMouseUpCircleStrokeColor

Circle stroke color after mouse moving up the element

SNPMouseUpCircleStrokeWidth

Circle stroke width after mouse moving up the element

SNPMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a SNP point.

SNPMouseOverColor

Color after mouse moving over the element

SNPMouseOverCircleSize

Circle size after mouse moving over the element

SNPMouseOverCircleOpacity

Circle opacity after mouse moving over the element

SNPMouseOverCircleStrokeColor

Circle stroke color after mouse moving over the element

SNPMouseOverCircleStrokeWidth

Circle stroke width after mouse moving over the element

SNPMouseOverTooltipsSetting

Default "chr : "

SNPMouseOverTooltipsHtml

Default " "

SNPMouseOverTooltipsPosition

Position for tooltips when mouse moving over

SNPMouseOverTooltipsBackgroundColor

Background color for tooltips when mouse moving over

SNPMouseOverTooltipsBorderStyle

Border style for tooltips when mouse moving over

SNPMouseOverTooltipsBorderWidth

Border width for tooltips when mouse moving over

SNPMouseOverTooltipsPadding

Padding for tooltips when mouse moving over

SNPMouseOverTooltipsBorderRadius

Border radius for tooltips when mouse moving over

SNPMouseOverTooltipsOpacity

Opacity for tooltips when mouse moving over

LINKxlink

Default False, add/not xlink for LINK module

LINKMouseEvent

Default True, open/not open mouse event of LINK module

LINKMouseClickDisplay

Default False, show/not the tooltip when mouse click on a LINK point.

LINKMouseClickOpacity

Opacity when mouse clicking

LINKMouseClickStrokeColor

Stroke color when mouse clicking

LINKMouseClickStrokeWidth

Stroke width when mouse clicking

LINKMouseDownDisplay

Default False, show/not the tooltip when mouse click down a LINK point.

LINKMouseDownOpacity

Opacity when mouse moving down the element

LINKMouseDownStrokeColor

Stroke color when mouse moving down the element

LINKMouseDownStrokeWidth

Stroke width when mouse moving down the element

LINKMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a LINK point.

LINKMouseEnterOpacity

Opacity when mouse entering the element

LINKMouseEnterStrokeColor

Stroke color when mouse entering the element

LINKMouseEnterStrokeWidth

Stroke width when mouse entering the element

LINKMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a LINK point.

LINKMouseLeaveOpacity

Opacity when mouse leaving the element

LINKMouseLeaveStrokeColor

Stroke color when mouse leaving the element

LINKMouseLeaveStrokeWidth

Stroke width when mouse leaving the element

LINKMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a LINK point.

LINKMouseMoveOpacity

Opacity when mouse moving in the element

LINKMouseMoveStrokeColor

Stroke color when mouse moving in the element

LINKMouseMoveStrokeWidth

Stroke width when mouse moving in the element

LINKMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a LINK point anymore.

LINKMouseOutAnimationTime

Animation time when mouse moving out the element

LINKMouseOutOpacity

Opacity when mouse moving out the element

LINKMouseOutStrokeColor

Stroke color when mouse moving out the element

LINKMouseOutStrokeWidth

Stroke width when mouse moving out the element

LINKMouseUpDisplay

Default False, show/not the tooltip when mouse click up a LINK point.

LINKMouseUpOpacity

Opacity when mouse moving up the element

LINKMouseUpStrokeColor

Stroke color when mouse moving up the element

LINKMouseUpStrokeWidth

Stroke width when mouse moving up the element

LINKMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a LINK point.

LINKMouseOverOpacity

Opacity when mouse moving over the element

LINKMouseOverStrokeColor

Stroke color when mouse moving over the element

LINKMouseOverStrokeWidth

Stroke width when mouse moving over the element

LINKMouseOverTooltipsSetting

Default "style1"

LINKMouseOverTooltipsHtml

Default " "

LINKMouseOverTooltipsPosition

Default "absolute"

LINKMouseOverTooltipsBackgroundColor

Default "white"

LINKMouseOverTooltipsBorderStyle

Default "solid"

LINKMouseOverTooltipsBorderWidth

Default 0

LINKMouseOverTooltipsPadding

Default "3px"

LINKMouseOverTooltipsBorderRadius

Default "3px"

LINKMouseOverTooltipsOpacity

Default 0.8

LINKLabelDragEvent

Defalut False, draggable for the label of LINK module

CHORDMouseEvent

Default True, open/not open mouse event of CHORD module from NG-Circos.

CHORDMouseFillColorExcluded

A type of color in character, chord in this color will be hided

CHORDMouseClickDisplay

Default False, show/not the tooltip when mouse click on a CHORD point.

CHORDMouseClickOpacity

Opacity when mouse clicking

CHORDMouseClickStrokeColor

Stroke color when mouse clicking

CHORDMouseClickStrokeWidth

Stroke width when mouse clicking

CHORDMouseDownDisplay

Default False, show/not the tooltip when mouse click down a CHORD point.

CHORDMouseDownOpacity

Opacity when mouse moving down the element

CHORDMouseDownStrokeColor

Stroke color when mouse moving down the element

CHORDMouseDownStrokeWidth

Stroke width when mouse moving down the element

CHORDMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a CHORD point.

CHORDMouseEnterOpacity

Opacity when mouse entering the element

CHORDMouseEnterStrokeColor

Stroke color when mouse entering the element

CHORDMouseEnterStrokeWidth

Stroke width when mouse entering the element

CHORDMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a CHORD point.

CHORDMouseLeaveOpacity

Opacity when mouse leaving the element

CHORDMouseLeaveStrokeColor

Stroke color when mouse leaving the element

CHORDMouseLeaveStrokeWidth

Stroke width when mouse leaving the element

CHORDMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a CHORD point.

CHORDMouseMoveOpacity

Opacity when mouse moving in the element

CHORDMouseMoveStrokeColor

Stroke color when mouse moving in the element

CHORDMouseMoveStrokeWidth

Stroke width when mouse moving in the element

CHORDMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a CHORD point anymore.

CHORDMouseOutAnimationTime

Animation time when mouse moving out the element

CHORDMouseOutOpacity

Opacity when mouse moving out the element

CHORDMouseOutStrokeColor

Stroke color when mouse moving out the element

CHORDMouseOutStrokeWidth

Stroke width when mouse moving out the element

CHORDMouseUpDisplay

Default False, show/not the tooltip when mouse click up a CHORD point.

CHORDMouseUpOpacity

Opacity when mouse moving up the element

CHORDMouseUpStrokeColor

Stroke color when mouse moving up the element

CHORDMouseUpStrokeWidth

Stroke width when mouse moving up the element

CHORDMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a CHORD point.

CHORDMouseOverOpacity

Opacity when mouse moving over the element

CHORDMouseOverStrokeColor

Stroke color when mouse moving over the element

CHORDMouseOverStrokeWidth

Stroke width when mouse moving over the element

HISTOGRAMxlink

Default False, add/not xlink for HISTOGRAM module

HISTOGRAMMouseEvent

Default True, open/not open mouse event of HISTOGRAM module

HISTOGRAMMouseClickDisplay

Default False, show/not the tooltip when mouse click on a HISTOGRAM point.

HISTOGRAMMouseClickColor

Color when mouse clicking

HISTOGRAMMouseClickOpacity

Opacity when mouse clicking

HISTOGRAMMouseClickStrokeColor

Stroke color when mouse clicking

HISTOGRAMMouseClickStrokeWidth

Stroke width when mouse clicking

HISTOGRAMMouseDownDisplay

Default False, show/not the tooltip when mouse click down a HISTOGRAM point.

HISTOGRAMMouseDownColor

Color when mouse moving down the element

HISTOGRAMMouseDownOpacity

Opacity when mouse moving up the element

HISTOGRAMMouseDownStrokeColor

Stroke color when mouse moving up the element

HISTOGRAMMouseDownStrokeWidth

Stroke width when mouse moving up the element

HISTOGRAMMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a HISTOGRAM point.

HISTOGRAMMouseEnterColor

Color when mouse entering the element

HISTOGRAMMouseEnterOpacity

Opacity when mouse entering the element

HISTOGRAMMouseEnterStrokeColor

Stroke color when mouse entering the element

HISTOGRAMMouseEnterStrokeWidth

Stroke width when mouse entering the element

HISTOGRAMMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a HISTOGRAM point.

HISTOGRAMMouseLeaveColor

Color when mouse leaving the element

HISTOGRAMMouseLeaveOpacity

Opacity when mouse leaving the element

HISTOGRAMMouseLeaveStrokeColor

Stroke color when mouse leaving the element

HISTOGRAMMouseLeaveStrokeWidth

Stroke width when mouse leaving the element

HISTOGRAMMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a HISTOGRAM point.

HISTOGRAMMouseMoveColor

Color when mouse moving in the element

HISTOGRAMMouseMoveOpacity

Opacity when mouse moving in the element

HISTOGRAMMouseMoveStrokeColor

Stroke color when mouse moving in the element

HISTOGRAMMouseMoveStrokeWidth

Stroke width when mouse moving in the element

HISTOGRAMMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a HISTOGRAM point anymore.

HISTOGRAMMouseOutAnimationTime

Animation time when mouse moving out the element

HISTOGRAMMouseOutColor

Color when mouse moving out the element

HISTOGRAMMouseOutOpacity

Opacity when mouse moving out the element

HISTOGRAMMouseOutStrokeColor

Stroke color when mouse moving out the element

HISTOGRAMMouseOutStrokeWidth

Stroke width when mouse moving out the element

HISTOGRAMMouseUpDisplay

Default False, show/not the tooltip when mouse click up a HISTOGRAM point.

HISTOGRAMMouseUpColor

Color when mouse moving up the element

HISTOGRAMMouseUpOpacity

Opacity when mouse moving up the element

HISTOGRAMMouseUpStrokeColor

Stroke color when mouse moving up the element

HISTOGRAMMouseUpStrokeWidth

Stroke width when mouse moving up the element

HISTOGRAMMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a HISTOGRAM point.

HISTOGRAMMouseOverColor

Color when mouse moving over the element

HISTOGRAMMouseOverOpacity

Opacity when mouse moving over the element

HISTOGRAMMouseOverStrokeColor

Stroke color when mouse moving over the element

HISTOGRAMMouseOverStrokeWidth

Stroke width when mouse moving over the element

HISTOGRAMMouseOverTooltipsSetting

Default "style1"

HISTOGRAMMouseOverTooltipsHtml

Default " "

HISTOGRAMMouseOverTooltipsPosition

Default "absolute"

HISTOGRAMMouseOverTooltipsBackgroundColor

Default "white"

HISTOGRAMMouseOverTooltipsBorderStyle

Default "solid"

HISTOGRAMMouseOverTooltipsBorderWidth

Default 0

HISTOGRAMMouseOverTooltipsPadding

Default "3px"

HISTOGRAMMouseOverTooltipsBorderRadius

Default "3px"

HISTOGRAMMouseOverTooltipsOpacity

Default 0.8

LINEMouseEvent

Default True, open/not open mouse event of LINE module

LINEMouseClickDisplay

Default False, show/not the tooltip when mouse click on a LINE point.

LINEMouseClickLineOpacity

Line opacity when mouse clicking the element

LINEMouseClickLineStrokeColor

Stroke color when mouse clicking the element

LINEMouseClickLineStrokeWidth

Stroke width when mouse clicking the element

LINEMouseDownDisplay

Default False, show/not the tooltip when mouse click down a LINE point.

LINEMouseDownLineOpacity

Line opacity when mouse moving down the element

LINEMouseDownLineStrokeColor

Stroke color when mouse moving down the element

LINEMouseDownLineStrokeWidth

Stroke width when mouse moving down the element

LINEMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a LINE point.

LINEMouseEnterLineOpacity

Line opacity when mouse entering the element

LINEMouseEnterLineStrokeColor

Stroke color when mouse entering the element

LINEMouseEnterLineStrokeWidth

Stroke width when mouse entering the element

LINEMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a LINE point.

LINEMouseLeaveLineOpacity

Line opacity when mouse leaving the element

LINEMouseLeaveLineStrokeColor

Stroke color when mouse leaving the element

LINEMouseLeaveLineStrokeWidth

Stroke width when mouse leaving the element

LINEMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a LINE point.

LINEMouseMoveLineOpacity

Line opacity when mouse moving in the element

LINEMouseMoveLineStrokeColor

Stroke color when mouse moving in the element

LINEMouseMoveLineStrokeWidth

Stroke width when mouse moving in the element

LINEMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a LINE point anymore.

LINEMouseOutAnimationTime

Animation time when mouse moving out the element

LINEMouseOutLineOpacity

Line opacity when mouse moving out the element

LINEMouseOutLineStrokeColor

Stroke color when mouse moving out the element

LINEMouseOutLineStrokeWidth

Stroke width when mouse moving out the element

LINEMouseUpDisplay

Default False, show/not the tooltip when mouse click up a LINE point.

LINEMouseUpLineOpacity

Line opacity when mouse moving up the element

LINEMouseUpLineStrokeColor

Stroke color when mouse moving up the element

LINEMouseUpLineStrokeWidth

Stroke width when mouse moving up the element

LINEMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a LINE point.

LINEMouseOverLineOpacity

Line opacity when mouse moving over the element

LINEMouseOverLineStrokeColor

Stroke color when mouse moving over the element

LINEMouseOverLineStrokeWidth

Stroke width when mouse moving over the element

LINEMouseOverTooltipsSetting

Default "style1"

LINEMouseOverTooltipsHtml

Default " "

LINEMouseOverTooltipsPosition

Default "absolute"

LINEMouseOverTooltipsBackgroundColor

Default "white"

LINEMouseOverTooltipsBorderStyle

Default "solid"

LINEMouseOverTooltipsBorderWidth

Default 0

LINEMouseOverTooltipsPadding

Default "3px"

LINEMouseOverTooltipsBorderRadius

Default "3px"

LINEMouseOverTooltipsOpacity

Default 0.8

WIGMouseEvent

Default True, open/not open mouse event of WIG module

WIGMouseClickDisplay

Default False, show/not the tooltip when mouse click on a WIG point.

WIGMouseClickLineOpacity

Line opacity when mouse clicking the element

WIGMouseClickLineStrokeColor

Stroke color when mouse clicking the element

WIGMouseClickLineStrokeWidth

Stroke width when mouse clicking the element

WIGMouseClickFillColor

Filling color when mouse clicking the element

WIGMouseDownDisplay

Default False, show/not the tooltip when mouse click down a WIG point.

WIGMouseDownLineOpacity

Line opacity when mouse moving down the element

WIGMouseDownLineStrokeColor

Stroke color when mouse moving down the element

WIGMouseDownLineStrokeWidth

Stroke width when mouse moving down the element

WIGMouseDownFillColor

Filling color when mouse moving down the element

WIGMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a WIG point.

WIGMouseEnterLineOpacity

Line opacity when mouse entering the element

WIGMouseEnterLineStrokeColor

Stroke color when mouse entering the element

WIGMouseEnterLineStrokeWidth

Stroke width when mouse entering the element

WIGMouseEnterFillColor

Filling color when mouse entering the element

WIGMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a WIG point.

WIGMouseLeaveLineOpacity

Line opacity when mouse leaving the element

WIGMouseLeaveLineStrokeColor

Stroke color when mouse leaving the element

WIGMouseLeaveLineStrokeWidth

Stroke width when mouse leaving the element

WIGMouseLeaveFillColor

Filling color when mouse leaving the element

WIGMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a WIG point.

WIGMouseMoveLineOpacity

Line opacity when mouse moving in the element

WIGMouseMoveLineStrokeColor

Stroke color when mouse moving in the element

WIGMouseMoveLineStrokeWidth

Stroke width when mouse moving in the element

WIGMouseMoveFillColor

Filling color when mouse leaving the element

WIGMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a WIG point anymore.

WIGMouseOutAnimationTime

Animation time when mouse moving out the element

WIGMouseOutLineOpacity

Line opacity when mouse moving out the element

WIGMouseOutLineStrokeColor

Stroke color when mouse moving out the element

WIGMouseOutLineStrokeWidth

Stroke width when mouse moving out the element

WIGMouseOutFillColor

Filling color when mouse moving out the element

WIGMouseUpDisplay

Default False, show/not the tooltip when mouse click up a WIG point.

WIGMouseUpLineOpacity

Line opacity when mouse moving up the element

WIGMouseUpLineStrokeColor

Stroke color when mouse moving up the element

WIGMouseUpLineStrokeWidth

Stroke width when mouse moving up the element

WIGMouseUpFillColor

Filling color when mouse moving up the element

WIGMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a WIG point.

WIGMouseOverLineOpacity

Line opacity when mouse moving over the element

WIGMouseOverLineStrokeColor

Stroke color when mouse moving over the element

WIGMouseOverLineStrokeWidth

Stroke width when mouse moving over the element

WIGMouseOverFillColor

Filling color when mouse moving over the element

WIGMouseOverTooltipsSetting

Default "style1"

WIGMouseOverTooltipsHtml

Default " "

WIGMouseOverTooltipsPosition

Default "absolute"

WIGMouseOverTooltipsBackgroundColor

Default "white"

WIGMouseOverTooltipsBorderStyle

Default "solid"

WIGMouseOverTooltipsBorderWidth

Default 0

WIGMouseOverTooltipsPadding

Default "3px"

WIGMouseOverTooltipsBorderRadius

Default "3px"

WIGMouseOverTooltipsOpacity

Default 0.8

SCATTERxlink

Default False, add/not xlink for SCATTER module

SCATTERMouseEvent

Default True, open/not open mouse event of SCATTER module

SCATTERMouseClickDisplay

Default False, show/not the tooltip when mouse click on a SCATTER point.

SCATTERMouseClickColor

Color when mouse clicking the element

SCATTERMouseClickCircleSize

Circle size when mouse clicking the element

SCATTERMouseClickCircleOpacity

Circle opacity when mouse clicking the element

SCATTERMouseClickCircleStrokeColor

Circle stroke color when mouse clicking the element

SCATTERMouseClickCircleStrokeWidth

Circle stroke width when mouse clicking the element

SCATTERMouseClickTextFromData

Text column when mouse clicking the element

SCATTERMouseClickTextOpacity

Text opacity when mouse clicking the element

SCATTERMouseClickTextColor

Text color when mouse clicking the element

SCATTERMouseClickTextSize

Text size when mouse clicking the element

SCATTERMouseClickTextPostionX, SCATTERMouseClickTextPostionY

Text coordinates when mouse clicking the element

SCATTERMouseClickTextDrag

Whether text is draggable when clicing element

SCATTERMouseDownDisplay

Default False, show/not the tooltip when mouse click down a SCATTER point.

SCATTERMouseDownColor

Color when mouse moving down the element

SCATTERMouseDownCircleSize

Circle size when mouse moving down the element

SCATTERMouseDownCircleOpacity

Circle opacity when mouse moving down the element

SCATTERMouseDownCircleStrokeColor

Circle stroke color when mouse moving down the element

SCATTERMouseDownCircleStrokeWidth

Circle stroke width when mouse moving down the element

SCATTERMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a SCATTER point.

SCATTERMouseEnterColor

Color when mouse entering the element

SCATTERMouseEnterCircleSize

Circle size when mouse entering the element

SCATTERMouseEnterCircleOpacity

Circle opacity when mouse entering the element

SCATTERMouseEnterCircleStrokeColor

Circle stroke color when mouse entering the element

SCATTERMouseEnterCircleStrokeWidth

Circle stroke width when mouse entering the element

SCATTERMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a SCATTER point.

SCATTERMouseLeaveColor

Color when mouse leaving the element

SCATTERMouseLeaveCircleSize

Circle size when mouse leaving the element

SCATTERMouseLeaveCircleOpacity

Circle opacity when mouse leaving the element

SCATTERMouseLeaveCircleStrokeColor

Circle stroke color when mouse leaving the element

SCATTERMouseLeaveCircleStrokeWidth

Circle stroke width when mouse leaving the element

SCATTERMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a SCATTER point.

SCATTERMouseMoveColor

Color when mouse moving in the element

SCATTERMouseMoveCircleSize

Circle size when mouse moving in the element

SCATTERMouseMoveCircleOpacity

Circle opacity when mouse moving in the element

SCATTERMouseMoveCircleStrokeColor

Circle stroke color when mouse moving in the element

SCATTERMouseMoveCircleStrokeWidth

Circle stroke width when mouse moving in the element

SCATTERMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a SCATTER point anymore.

SCATTERMouseOutAnimationTime

Animation time when mouse moving out the element

SCATTERMouseOutColor

Color when mouse moving out the element

SCATTERMouseOutCircleSize

Circle size when mouse moving out the element

SCATTERMouseOutCircleOpacity

Circle opacity when mouse moving out the element

SCATTERMouseOutCircleStrokeColor

Circle stroke color when mouse moving out the element

SCATTERMouseOutCircleStrokeWidth

Circle stroke width when mouse moving out the element

SCATTERMouseUpDisplay

Default False, show/not the tooltip when mouse click up a SCATTER point.

SCATTERMouseUpColor

Color when mouse moving up the element

SCATTERMouseUpCircleSize

Circle size when mouse moving up the element

SCATTERMouseUpCircleOpacity

Circle opacity when mouse moving up the element

SCATTERMouseUpCircleStrokeColor

Circle stroke color when mouse moving up the element

SCATTERMouseUpCircleStrokeWidth

Circle stroke width when mouse moving up the element

SCATTERMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a SCATTER point.

SCATTERMouseOverColor

Color when mouse moving over the element

SCATTERMouseOverCircleSize

Circle size when mouse moving over the element

SCATTERMouseOverCircleOpacity

Circle opacity when mouse moving over the element

SCATTERMouseOverCircleStrokeColor

Circle stroke color when mouse moving over the element

SCATTERMouseOverCircleStrokeWidth

Circle stroke width when mouse moving over the element

SCATTERMouseOverTooltipsSetting

Default "style1"

SCATTERMouseOverTooltipsHtml

Default " "

SCATTERMouseOverTooltipsPosition

Default "absolute"

SCATTERMouseOverTooltipsBackgroundColor

Default "white"

SCATTERMouseOverTooltipsBorderStyle

Default "solid"

SCATTERMouseOverTooltipsBorderWidth

Default 0

SCATTERMouseOverTooltipsPadding

Default "3px"

SCATTERMouseOverTooltipsBorderRadius

Default "3px"

SCATTERMouseOverTooltipsOpacity

Default 0.8

ARCxlink

Default False, add/not xlink for ARC module

ARCMouseEvent

Default True, open/not open mouse event of ARC module

ARCMouseClickDisplay

Default False, show/not the tooltip when mouse click on a ARC point.

ARCMouseClickColor

Color when mouse clicking the element

ARCMouseClickArcOpacity

Arc opacity when mouse clicking the element

ARCMouseClickArcStrokeColor

Arc stroke color when mouse clicking the element

ARCMouseClickArcStrokeWidth

Arc stroke width when mouse clicking the element

ARCMouseClickTextFromData

Text column when mouse clicking the element

ARCMouseClickTextOpacity

Text opacity when mouse clicking the element

ARCMouseClickTextColor

Text color when mouse clicking the element

ARCMouseClickTextSize

Text size when mouse clicking the element

ARCMouseClickTextPostionX, ARCMouseClickTextPostionY

Text coordinates when mouse clicking the element

ARCMouseClickTextDrag

Whether text is draggable when mouse clicking the element

ARCMouseDownDisplay

Default False, show/not the tooltip when mouse click down a ARC point.

ARCMouseDownColor

Color when mouse moving down the element

ARCMouseDownArcOpacity

Arc opacity when mouse moving down the element

ARCMouseDownArcStrokeColor

Arc stroke color when mouse moving down the element

ARCMouseDownArcStrokeWidth

Arc stroke width when mouse moving down the element

ARCMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a ARC point.

ARCMouseEnterColor

Color when mouse entering the element

ARCMouseEnterArcOpacity

Arc opacity when mouse entering the element

ARCMouseEnterArcStrokeColor

Arc stroke color when mouse entering the element

ARCMouseEnterArcStrokeWidth

Arc stroke width when mouse entering the element

ARCMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a ARC point.

ARCMouseLeaveColor

Color when mouse leaving the element

ARCMouseLeaveArcOpacity

Arc opacity when mouse leaving the element

ARCMouseLeaveArcStrokeColor

Arc stroke color when mouse leaving the element

ARCMouseLeaveArcStrokeWidth

Arc stroke width when mouse leaving the element

ARCMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a ARC point.

ARCMouseMoveColor

Color when mouse moving in the element

ARCMouseMoveArcOpacity

Arc opacity when mouse moving in the element

ARCMouseMoveArcStrokeColor

Arc stroke color when mouse moving in the element

ARCMouseMoveArcStrokeWidth

Arc stroke width when mouse moving in the element

ARCMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a ARC point anymore.

ARCMouseOutAnimationTime

Animation time when mouse moving out the element

ARCMouseOutColor

Color when mouse moving out the element

ARCMouseOutArcOpacity

Arc opacity when mouse moving out the element

ARCMouseOutArcStrokeColor

Arc stroke color when mouse moving out the element

ARCMouseOutArcStrokeWidth

Arc stroke width when mouse moving out the element

ARCMouseUpDisplay

Default False, show/not the tooltip when mouse click up a ARC point.

ARCMouseUpColor

Color when mouse moving up the element

ARCMouseUpArcOpacity

Arc opacity when mouse moving up the element

ARCMouseUpArcStrokeColor

Arc stroke color when mouse moving up the element

ARCMouseUpArcStrokeWidth

Arc stroke width when mouse moving up the element

ARCMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a ARC point.

ARCMouseOverColor

Color when mouse moving over the element

ARCMouseOverArcOpacity

Arc opacity when mouse moving over the element

ARCMouseOverArcStrokeColor

Arc stroke color when mouse moving over the element

ARCMouseOverArcStrokeWidth

Arc stroke width when mouse moving over the element

ARCMouseOverTooltipsSetting

Default "style1"

ARCMouseOverTooltipsHtml

Default " "

ARCMouseOverTooltipsPosition

Default "absolute"

ARCMouseOverTooltipsBackgroundColor

Default "white"

ARCMouseOverTooltipsBorderStyle

Default "solid"

ARCMouseOverTooltipsBorderWidth

Default 0

ARCMouseOverTooltipsPadding

Default "3px"

ARCMouseOverTooltipsBorderRadius

Default "3px"

ARCMouseOverTooltipsOpacity

Default 0.8

GENExlink

Default False, add/not xlink for GENE module

GENEMouseEvent

Default True, open/not open mouse event of GENE module

GENEMouseClickDisplay

Default False, show/not the tooltip when mouse click on a GENE point.

GENEMouseClickColor

Color when mouse clicking the element

GENEMouseClickArcOpacity

Arc opacity when mouse clicking the element

GENEMouseClickArcStrokeColor

Arc stroke color when mouse clicking the element

GENEMouseClickArcStrokeWidth

Arc stroke width when mouse clicking the element

GENEMouseClickTextFromData

Text column when mouse clicking the element

GENEMouseClickTextOpacity

Text opacity when mouse clicking the element

GENEMouseClickTextColor

Text color when mouse clicking the element

GENEMouseClickTextSize

Text size when mouse clicking the element

GENEMouseClickTextPostionX, GENEMouseClickTextPostionY

Text coordinates when mouse clicking the element

GENEMouseClickTextDrag

Whether text is draggable when mouse clicking the element

GENEMouseDownDisplay

Default False, show/not the tooltip when mouse click down a GENE point.

GENEMouseDownColor

Color when mouse moving down the element

GENEMouseDownArcOpacity

Arc opacity when mouse moving down the element

GENEMouseDownArcStrokeColor

Arc stroke color when mouse moving down the element

GENEMouseDownArcStrokeWidth

Arc stroke width when mouse moving down the element

GENEMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a GENE point.

GENEMouseEnterColor

Color when mouse entering the element

GENEMouseEnterArcOpacity

Arc opacity when mouse entering the element

GENEMouseEnterArcStrokeColor

Arc stroke color when mouse entering the element

GENEMouseEnterArcStrokeWidth

Arc stroke width when mouse entering the element

GENEMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a GENE point.

GENEMouseLeaveColor

Color when mouse leaving the element

GENEMouseLeaveArcOpacity

Arc opacity when mouse leaving the element

GENEMouseLeaveArcStrokeColor

Arc stroke color when mouse leaving the element

GENEMouseLeaveArcStrokeWidth

Arc stroke width when mouse leaving the element

GENEMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a GENE point.

GENEMouseMoveColor

Color when mouse moving in the element

GENEMouseMoveArcOpacity

Arc opacity when mouse moving in the element

GENEMouseMoveArcStrokeColor

Arc stroke color when mouse moving in the element

GENEMouseMoveArcStrokeWidth

Arc stroke width when mouse moving in the element

GENEMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a GENE point anymore.

GENEMouseOutAnimationTime

Animation time when mouse moving out the element

GENEMouseOutColor

Color when mouse moving out the element

GENEMouseOutArcOpacity

Arc opacity when mouse moving out the element

GENEMouseOutArcStrokeColor

Arc stroke color when mouse moving out the element

GENEMouseOutArcStrokeWidth

Arc stroke width when mouse moving out the element

GENEMouseUpDisplay

Default False, show/not the tooltip when mouse click up a GENE point.

GENEMouseUpColor

Color when mouse moving up the element

GENEMouseUpArcOpacity

Arc opacity when mouse moving up the element

GENEMouseUpArcStrokeColor

Arc stroke color when mouse moving up the element

GENEMouseUpArcStrokeWidth

Arc stroke width when mouse moving up the element

GENEMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a GENE point.

GENEMouseOverColor

Color when mouse moving over the element

GENEMouseOverArcOpacity

Arc opacity when mouse moving over the element

GENEMouseOverArcStrokeColor

Arc stroke color when mouse moving over the element

GENEMouseOverArcStrokeWidth

Arc stroke width when mouse moving over the element

GENEMouseOverTooltipsSetting

Default "style1"

GENEMouseOverTooltipsHtml

Default " "

GENEMouseOverTooltipsPosition

Default "absolute"

GENEMouseOverTooltipsBackgroundColor

Default "white"

GENEMouseOverTooltipsBorderStyle

Default "solid"

GENEMouseOverTooltipsBorderWidth

Default 0

GENEMouseOverTooltipsPadding

Default "3px"

GENEMouseOverTooltipsBorderRadius

Default "3px"

GENEMouseOverTooltipsOpacity

Default 0.8

LOLLIPOPxlink

Default False, add/not xlink for LOLLIPOP module

LOLLIPOPMouseEvent

Default True, open/not open mouse event of LOLLIPOP module

LOLLIPOPMouseClickDisplay

Default False, show/not the tooltip when mouse click on a LOLLIPOP point.

LOLLIPOPMouseClickColor

Color when mouse clicking

LOLLIPOPMouseClickCircleSize

Circle size when mouse clicking the element

LOLLIPOPMouseClickCircleOpacity

Circle opacity when mouse clicking the element

LOLLIPOPMouseClickCircleStrokeColor

Circle stroke color when mouse clicking the element

LOLLIPOPMouseClickCircleStrokeWidth

Circle stroke width when mouse clicking the element

LOLLIPOPMouseClickTextFromData

Text column when mouse clicking the element

LOLLIPOPMouseClickTextOpacity

Text opacity when mouse clicking the element

LOLLIPOPMouseClickTextColor

Text color when mouse clicking the element

LOLLIPOPMouseClickTextSize

Text size when mouse clicking the element

LOLLIPOPMouseClickTextPostionX, LOLLIPOPMouseClickTextPostionY

Text coordinates when mouse clicking the element

LOLLIPOPMouseClickTextDrag

Whether text is draggable when mouse clicking the element

LOLLIPOPMouseDownDisplay

Default False, show/not the tooltip when mouse click down a LOLLIPOP point.

LOLLIPOPMouseDownColor

Color when mouse moving down the element

LOLLIPOPMouseDownCircleSize

Circle size when mouse moving down the element

LOLLIPOPMouseDownCircleOpacity

Circle opacity when mouse moving down the element

LOLLIPOPMouseDownCircleStrokeColor

Circle stroke color when mouse moving down the element

LOLLIPOPMouseDownCircleStrokeWidth

Circle stroke width when mouse moving down the element

LOLLIPOPMouseEnterDisplay

Default False, show/not the tooltip when mouse mover over a LOLLIPOP point.

LOLLIPOPMouseEnterColor

Color when mouse entering the element

LOLLIPOPMouseEnterCircleSize

Circle size when mouse entering the element

LOLLIPOPMouseEnterCircleOpacity

Circle opacity when mouse entering the element

LOLLIPOPMouseEnterCircleStrokeColor

Circle stroke color when mouse entering the element

LOLLIPOPMouseEnterCircleStrokeWidth

Circle stroke width when mouse entering the element

LOLLIPOPMouseLeaveDisplay

Default False, show/not the tooltip when mouse mover leave a LOLLIPOP point.

LOLLIPOPMouseLeaveColor

Color when mouse leaving the element

LOLLIPOPMouseLeaveCircleSize

Circle size when mouse leaving the element

LOLLIPOPMouseLeaveCircleOpacity

Circle opacity when mouse leaving the element

LOLLIPOPMouseLeaveCircleStrokeColor

Circle stroke color when mouse leaving the element

LOLLIPOPMouseLeaveCircleStrokeWidth

Circle stroke width when mouse leaving the element

LOLLIPOPMouseMoveDisplay

Default False, show/not the tooltip when mouse move into a LOLLIPOP point.

LOLLIPOPMouseMoveColor

Color when mouse moving in the element

LOLLIPOPMouseMoveCircleSize

Circle size when mouse moving in the element

LOLLIPOPMouseMoveCircleOpacity

Circle opacity when mouse moving in the element

LOLLIPOPMouseMoveCircleStrokeColor

Circle stroke color when mouse moving in the element

LOLLIPOPMouseMoveCircleStrokeWidth

Circle stroke width when mouse moving in the element

LOLLIPOPMouseOutDisplay

Defalut False, hide/not tooltip when mouse is not hovering a LOLLIPOP point anymore.

LOLLIPOPMouseOutAnimationTime

Animation time when mouse moving out the element

LOLLIPOPMouseOutColor

Color when mouse moving out the element

LOLLIPOPMouseOutCircleSize

Circle size when mouse moving out the element

LOLLIPOPMouseOutCircleOpacity

Circle opacity when mouse moving out the element

LOLLIPOPMouseOutCircleStrokeColor

Circle stroke color when mouse moving out the element

LOLLIPOPMouseOutCircleStrokeWidth

Circle stroke width when mouse moving out the element

LOLLIPOPMouseUpDisplay

Default False, show/not the tooltip when mouse click up a LOLLIPOP point.

LOLLIPOPMouseUpColor

Color when mouse moving up the element

LOLLIPOPMouseUpCircleSize

Circle size when mouse moving up the element

LOLLIPOPMouseUpCircleOpacity

Circle opacity when mouse moving up the element

LOLLIPOPMouseUpCircleStrokeColor

Circle stroke color when mouse moving up the element

LOLLIPOPMouseUpCircleStrokeWidth

Circle stroke width when mouse moving up the element

LOLLIPOPMouseOverDisplay

Default False, show/not the tooltip when mouse hover on a LOLLIPOP point.

LOLLIPOPMouseOverColor

Color when mouse moving over the element

LOLLIPOPMouseOverCircleSize

Circle size when mouse moving over the element

LOLLIPOPMouseOverCircleOpacity

Circle opacity when mouse moving over the element

LOLLIPOPMouseOverCircleStrokeColor

Circle stroke color when mouse moving over the element

LOLLIPOPMouseOverCircleStrokeWidth

Circle stroke width when mouse moving over the element

LOLLIPOPMouseOverTooltipsSetting

Default "style1"

LOLLIPOPMouseOverTooltipsHtml

Default " "

LOLLIPOPMouseOverTooltipsPosition

Default "absolute"

LOLLIPOPMouseOverTooltipsBackgroundColor

Default "white"

LOLLIPOPMouseOverTooltipsBorderStyle

Default "solid"

LOLLIPOPMouseOverTooltipsBorderWidth

Default 0

LOLLIPOPMouseOverTooltipsPadding

Default "3px"

LOLLIPOPMouseOverTooltipsBorderRadius

Default "3px"

LOLLIPOPMouseOverTooltipsOpacity

Default 0.8

elementId

the name of the HTML id to be used to contain the visualization.

...

Ignored

Value

The main figure for interacCircos with all tracks.

Examples

1
Circos(genome = "hg19")

interacCircos documentation built on Jan. 21, 2021, 5:10 p.m.