7 examples of 'd3 axisbottom' in JavaScript

Every line of 'd3 axisbottom' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
178function axisBottom(scale) {
179 return axis(bottom, scale);
180}
174function axisLeft(scale) {
175 return axis(left, scale);
176}
17createAxisY(y) {
18 return d3.axisLeft(y);
19}
182function axisLeft(scale) {
183 return axis(left, scale);
184}
85function getAxis(alignment){
86 return{
87 "top": d3.axisTop(),
88 "bottom":d3.axisBottom()
89 }[alignment]
90}
95public d3GetYAxis() {
96 let chart = this.props.chart as BarChart;
97 let yScale = d3.scale.linear();
98 yScale.range([chart.height - this._margin.bottom, this._margin.top])
99 yScale.domain([
100 chart.yScale.min != null ? chart.yScale.min : d3.min(chart.yColumns, (d) => d3.min(chart.dataset.rows, (r) => +r[d])),
101 chart.yScale.max != null ? chart.yScale.max : d3.max(chart.yColumns, (d) => d3.max(chart.dataset.rows, (r) => +r[d]))
102 ]);
103 if (chart.yScale.min == null && chart.yScale.max == null) {
104 yScale.nice();
105 }
106 let yAxis = d3.svg.axis().scale(yScale).orient("left");
107 return { yScale, yAxis };
108}
136function make_y_axis() { // function for the y grid lines
137 return d3.svg.axis()
138 .scale(y)
139 .orient("left")
140 .ticks(yticks)
141}

Related snippets