1081 results found
-
Heatmap highlight row/column of a given category
The user would click a given category name, for instance, on a list, and the heatmap would highlight the row/column that corresponds to that category. This would allow for users to look for columns/rows if interest in a faster way, especially when dealing with big datasets.
20 votes -
Adding Telangana State to the map of India with all disputed areas
The Telangana State in not yet added to the map of India. Please add it to the map of India in all the three versions.
1 voteThe map update is planned as a part of the next map collection release.
Related GitHub issue: https://github.com/highcharts/map-collection-dist/issues/1
-
Allow irregular datetime intervals in xAxis for heatmap
Instead of fixed intervals for a datetime xAxis, it can support datetime value in x value
[0 … 99]
0: Object
value: 3.246
x: 1426049467
y: 01: Object
value: 3.653
x: 1426050066
y: 07 votes -
City level highmaps
Currently highmaps have some of the countries can be drilled down to city level, I hope almost all the countries can have city level data or administrative district level.
Hope highmaps team could help!
1 vote -
reversing selected colorscheme and maximizing contrast in highmaps
We have recently implemented highmaps on our site and added features to let content creators select different color schemes when they create a map.
But what they are missing is two things: a option to reverse the selected colorscheme from dark to light or light to dark.And a behavior change in highmaps when using the defined colors, so that if the map has fewer data classes than the number of defined colors, only the colors with highest contrast between them should be used.
example: if only two data classes are defined, only the lightest and the darkest color should…
4 votes -
Initial label autoRotation value
I am using x axis label autoRotation, but I want to specify an initial
rotation other than 0. I other words, when I want all labels to initially
draw at -30, but if the user shrinks the chart width, then I want auto
rotation to go to -45, then -60, etc, but rotation at a minimum should be
no less than -306 votes -
tooltip when bubbles overlap
Is there a possibility to display tooltip for all the bubbles that overlap
5 votes -
Rangeselector with numerical x-axis
Rangeselector is great, but I have only seen it with dates on the x-axis. Is it also possible to have numerical values instead?
I would expect it to be relatively straight-forward. If not, is there a reason for not supporting it?
Thanks!
6 votesIt’s already possible, but not very intuitive, since Highstock is all about time-based data. The trick is to set the button type to “millisecond”, which represents one axis unit: http://jsfiddle.net/zgLdjk6k/
-
shape option for bar chart Edges
I am looking for option for bar chart Edges shapes like arrow
i have tried by using boardradius it not fulfill my requirement any suggestion please
3 votes -
Highcharts wordcloud: Group words in sections and show words having maximum weight in each category with relative font sizes
https://www.anychart.com/products/anychart/gallery/Tag_Cloud/State_of_the_Union_Address_Most_Used_Words.php
Refer the image in the above link. The image shows words grouped in 3 categories: Barack Obama, George Bush and Ronald Reagan. Each of these categories have a word with maximum frequency – I (70%), will (49%) and will (65%) respectively. Thus the font sizes of maximum frequency words are shown relatively.
I have tried following 3 examples:
1) Render three wordclouds in a one chart: jsfiddle.net/znm6f89r/8 - but still, word weight is based on the size within the series.
2) Define custom placement strategy: jsfiddle.net/znm6f89r/28 - but labels may not be within the column.
3) Using 3 series…12 votes -
scientific notation
It would be nice to have a default formatter for displaying numbers in scientific notation
3 votesHere’s an idea of how to add a format for scientific notation:
http://jsfiddle.net/highcharts/pLy4g2dk/
Alternatively, Number.toExponential can be used inside formatter functions.
-
Drawings
Hi, is it possible to import dwg or dxf files to highchart? Need to show information on drawings, similar to Tile map
1 vote -
EEG
We are willing to purchase your products.
Can I make an EEG chart with a high chart?
The EEG chart has a time axis X and a Y axis with 19 individual ranges.
1 vote -
US map with state search functionality(only searched state should contain all county )
US map with state search functionality which display all the states by default when search for any state then in the result it should display searched state with all the counties and also rest of the state without county.
1 vote -
Allow option for use of Voronoi diagrams by tooltips
For the tooltips, the hover over are isn't very user friendly.
For example, using the closest point on the X-axis in a chart rich in data points is hard to get the exact point of interest. Usually these points occur where there is a distinguishing feature which Voronoi diagrams excel in. Such as a spike in a line diagram.
Even when there is no feature to focus on, the Voronoi diagram will have effectvily the same interaction as the current method.
3 votes -
directed graph
add directed graph for network analysis, like alchemyjs/graphviz/arbor
13 votes -
lazy load the charts to optimize performance
render the chart when it is visible,it will very useful when there are lots of charts in one page
1 vote -
Property for donut chart to show the aggregated total exactly at the center of donut
Provide a property for donut chart to show the aggregated total exactly at the center of donut
var colors = Highcharts.getOptions().colors,
categories = [
"Chrome",
"Firefox",
"Internet Explorer",
"Safari",
"Edge",
"Opera",
"Other"
],
data = [
{
"y": 62.74,
"color": colors[2],
"drilldown": {
"name": "Chrome",
"categories": [
"Chrome v65.0",
"Chrome v64.0",
"Chrome v63.0",
"Chrome v62.0",
"Chrome v61.0",
"Chrome v60.0",
"Chrome v59.0",
"Chrome v58.0",
"Chrome v57.0",
"Chrome v56.0",
"Chrome v55.0",
"Chrome v54.0",
"Chrome v51.0",
"Chrome v49.0",
"Chrome v48.0",
"Chrome v47.0",
"Chrome v43.0",
"Chrome v29.0"
],
"data": [
0.1,
1.3,
53.02,
1.4,
0.88,
0.56,
0.45,
0.49,
0.32,
0.29,
0.79,
0.18,
0.13,
2.16,…1 voteYou can add this to the title dynamically: http://jsfiddle.net/highcharts/h24v71vs/
-
add a property for keeping the font-size fixed on svg files while resizing it
I would love to have a property fontresize: boolean like
title: {
text: 'Highcharts Header',
style: {
fontSize: '48px',
fontResize: false;
}
}
for all Texts at the charts or may be also on generall property which works on all texts.
This property (set on false) should avoid that while resizing the svg-file the size of the text is being resized too.3 votes -
Set initial state for (custom) buttons before drawing
As I explain in this SO question https://stackoverflow.com/questions/51282216/set-initial-state-for-custom-buttons-before-drawing-highcharts , I need to create custom buttons with an initial/default state (disabled mostly).
Right now I use a callback function with setState (thankfully this doesn't redraw the graph, therefore we face little to no performance impact) but it I believe it could be a nice feature
1 vote
- Don't see your idea?