score:2
Accepted answer
Sounds like you just want a logarithmic axis.
yAxis: {
type: 'logarithmic',
min: 0.01,
max: 10
},
Here's a fiddle example.
score:0
AFAIK Highcharts does not support automatic creation of histograms, but you can add a category to the xAxis with the desired labels, and then create arrays of data to match these.
xAxis: {
categories: ['0.01', '0.10', '1.00', '10.00']
},
series: [{
data: [10, 52, 1, 0]
}]
Source: stackoverflow.com
Related Articles
- highcharts.js: static ticks spaced equally apart
- How to show equally spaced axis for datetime for billing cycle related data on highcharts
- How to set a static minimum value for axes in Highcharts
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- Highcharts - Global configuration with common code and unique data & Headings
- Y-axis ticks in Highcharts
- HighCharts Stock Chart error code 18
- highcharts change rendered image source on click
- How do i add mouse wheel code in Angular2 highcharts in typescript
- how to display 2 same highcharts without duplicate the code
- HighCharts Solid Gauge Chart not displaying ticks
- How to increase the tickLength of specific x ticks in highcharts
- Use of DotNet HighCharts dll to make charts in code behind
- How to edit tooltip in Highcharts C# code
- what means ${demo.css} in example files of highcharts ? That piece of code seems to be literal
- passing json values to highcharts from .net code behind
- how to use highcharts tooltip formatter in python code
- passing formatting JavaScript code to HighCharts with JSON
- Limit ticks on X axis in highcharts with R
- Highcharts display label for pie chart using html table as data source
- Simple, Open source PHP wrapper for Highcharts library
- highcharts chart height apart from legend
- Add Source to Highcharts Export CSV
- Highcharts : set a maximum number of ticks with a fixed interval
- Highcharts markers to appear only on x axis ticks
- Include additional highcharts source data in angular2 app
- Is there is a way to force highcharts to space columns equally spaces on datetime x-axis
- Conditions within highcharts code
- Strange character in the Highstock source code
- What's the code in Highcharts such that the bars (columns) in the same group use the same color?
- Highcharts - load json data
- HighCharts Linechart MySQL/PHP data for multiple lines
- Highcharts timeline chart with multiple axes
- How to add image/icon to a chart in Highcharts
- Highcharts, on column or x-axis category click append job number to page url
- Disable click on datalabel in pie
- Highcharts - Display Stack Label
- Highcharts: Get stack of series
- Updating Points
- HighCharts Heatmap yAxis title
- Highcharts animate series on show
- Modify legend symbol of highchart on export not working
- Hide dataLabels at specific chart width in Highcharts
- Formatting tooltip for everviz
- HighCharts is slow to load data when building multiple charts
- Highcharts are not working through AJAX
- Highcharts credits link not working when exporting as PDF
- Highcharts - prevent large marker from overflowing axes - my bubbles are escaping =(
- highcharts, bar chart legend with verticalAlign top not working
- Display labels in Highcharts 3D scatter plot