1👍
Assuming Marc comment is right (which seems pretty much the case), to answer your “what’s the alternative solution to align inputs”…
Updated Answer
Using display: flex
makes it easier to automatically adjust the size and/or distance between the checkboxes if the height of the container that wrap the bars in the canvas is always the same no matter how many options there are.
.chart-container {
display: flex;
}
.chart {
height: 200px;
}
.checkbox-container {
display: flex;
flex-direction: column;
height: 128px; /* height - adjust as needed */
margin-top: 38px; /* positioning - adjust as needed */
background: white; /* demo purpose only - hide image checkboxes */
position: absolute; /* demo purpose only - hide image checkboxes */
left: 10px; /* demo purpose only - hide image checkboxes */
padding: 0 8px; /* demo purpose only - hide image checkboxes */
z-index: 1; /* demo purpose only - hide image checkboxes */
}
.checkbox {
cursor: pointer;
height: 100%;
width: 100%;
min-width: 16px; /* minimum checkbox size - adjust as needed */
}
<!-- 3 bars example -->
<div class="chart-container">
<div class="checkbox-container">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
</div>
<img class="chart" src="https://i.stack.imgur.com/440p0.png">
</div>
<!-- 4 bars examples -->
<div class="chart-container">
<div class="checkbox-container">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
</div>
<img class="chart" src="https://i.stack.imgur.com/440p0.png">
</div>
<!-- 5 bars examples -->
<div class="chart-container">
<div class="checkbox-container">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
</div>
<img class="chart" src="https://i.stack.imgur.com/440p0.png">
</div>
Original Answer
You could…
- wrap the canvas in a div container with
position: relative
- create a container for your checkboxes with
position: absolute
- add your checkboxes into the
position: absolute
container and usemargin-bottom
so they align perfectly with your graph
If the number of options affects the height of the chart bars you would have to make the CSS values change as well accordingly either with…
- javascript:
document.querySelector('.checkbox').style.height = ...
- using Angular [style] directive:
[style.height.px]="..."
- using CSS classes depending on number of checkboxes/siblings inside the checkbox container: https://stackoverflow.com/a/12198561/5583283
Below is a working example using the 3rd option above, the CSS classes that change values depending on the number of checkboxes/siblings inside the checkbox-container
.
The whole idea is to keep the checkboxes height equals to the chart bars height and the distance between the checkboxes equals to the distance of the chart bars distance.
Please note that all pixel values for alignments are relative to what you expect and can be played with but I guess it will give you the big picture.
Hope it helps!
.chart-container {
position: relative;
}
.chart {
height: 200px;
}
.checkbox-container {
background: white; /* for demo purpose - hides image checkboxes */
padding-right: 8px; /* for demo purpose - hides image checkboxes */
position: absolute;
top: 44px; /* adjust as needed */
left: 8px; /* adjust as needed */
}
.checkbox {
display: block;
margin-bottom: 15px; /* adjust as needed */
height: 28px; /* desired checkbox height */
width: 28px; /* desired checkbox width */
cursor: pointer;
}
/* 5 checkboxes */
.checkbox:first-child:nth-last-child(5),
.checkbox:first-child:nth-last-child(5) ~ .checkbox {
margin-bottom: 6px; /* adjust as needed */
height: 18px; /* desired checkbox height */
width: 18px; /* desired checkbox width */
}
<!-- 3 bars example -->
<div class="chart-container">
<img class="chart" src="https://i.stack.imgur.com/440p0.png">
<div class="checkbox-container">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
</div>
</div>
<!-- 5 bars examples - sorry didn't have an image with 5 bars -->
<div class="chart-container">
<img class="chart" src="https://i.stack.imgur.com/440p0.png">
<div class="checkbox-container">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
<input class="checkbox" type="checkbox">
</div>
</div>