File size: 954 Bytes
494c9e4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.discreteViolin,.compareVio, .HistogramX, .ScatterPlotX, .barchartX {
  .bar {
    fill: #666666;
    stroke: #ccc;        // 添加浅灰色边框
    stroke-width: 0.5px; // 细边框
    transition-duration: .5s;

    &:hover {
      stroke: #666666;
      stroke-width: 1px;
      stroke-dasharray: 2,2 ;
      //opacity: 1;
    }

    &.selected{
      //stroke: #666666;
      //stroke-width: 1px;
      //stroke-dasharray: 2,2 ;
      opacity: 1;
    }
  }

  .sizeLabel {
    font-size: 8px;
    // font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    fill: var(--text-color);
    // dominant-baseline: middle;
    text-anchor: middle;
  }


  .label {
    font-size: 10px;
    // font-family: "IBM Plex Sans", sans-serif;
    font-weight: bold;
    dominant-baseline: middle;
    text-anchor: middle;
  }

  .x-axis, .y-axis {
    font-family: inherit;
  }
}

.HistogramX {
  background-color: transparent;
  border-radius: 6px;
}