Skip to content
Snippets Groups Projects
Commit 847deaaa authored by Cee Nell's avatar Cee Nell
Browse files

use same range for radius on chartUpdate

parent 525d9884
No related branches found
No related tags found
1 merge request!32Mobile settings for beeswarm
......@@ -214,7 +214,7 @@ function createBeeswarmChart() {
// Set radius based on evidence value
const radiusScale = d3.scaleLinear()
.domain([d3.min(data.value, d => d.evidence_val), d3.max(data.value, d => d.evidence_val)])
.range(window.innerWidth <= 700 ? [8, 30] : [10, 70]);
.range(window.innerWidth <= 700 ? [8, 40] : [10, 70]);
const yAxis = svg.append('g')
.attr("transform", "translate(50, 0)")
......@@ -293,7 +293,7 @@ function updateChart() {
// Set the radius scale based on evidence value
const radiusScale = d3.scaleLinear()
.domain([d3.min(data.value, d => d.evidence_val), d3.max(data.value, d => d.evidence_val)])
.range(window.innerWidth <= 700 ? [10, 40] : [10, 70]);
.range(window.innerWidth <= 700 ? [8, 40] : [10, 70]);
// Filter data based on active categories
const activeCategories = Object.keys(isChecked.value).filter(category => isChecked.value[category]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment