score:1
you will need to use a formatter to calculate the values in the expanded step as to account for the lower resolution.
docs: http://api.highcharts.com/highstock#tooltip.formatter
example:
$(function () {
$('#container').highcharts('stockchart', {
tooltip: {
formatter: function () {
var s = '<b>' + highcharts.dateformat('%a, %b %e, %y', this.x) + '</b>';
$.each(this.points, function () {
s += '<br/>1 usd = ' + this.y + ' eur';
});
return s;
}
},
rangeselector: {
selected: 1
},
series: [{
name: 'usd to eur',
data: usdeur
}]
});
});
p.s. - if i could see a sample data set (in json), i'll be able to calculate this.
Source: stackoverflow.com
Related Query
- Highstock shared tooltip multiple series - show data for line when not on point
- Highcharts shared tooltip for line series and scatter plot not working
- Highstock compare previous data point when date does not exist in series
- Highcharts not displaying series data for graph with multiple Y-axes
- Wrong data display when i set multiple series type in highstock chart
- Show Data For Grouped Series in ToolTip Highcharts
- highstock issue : pointInterval property is not working when series data set contains date and value?
- Highcharts - Highstock chart showing double line on hovering data points to show tooltip
- How to add a vertical plot line in multiple line series and show the tooltip on Plot line in highchart
- Highcharts click events not firing when displaying multiple line series
- High Charts Multiple Line Chart not displaying tooltip for multiple lines
- Highcharts nearest point tooltip not show due to undefined series
- Highstock : Shared tooltip except for one series
- Highchart / Highstock shows unformated tooltip lable when data grouping enabled but not used
- Getting extra series data from hash to show up in tooltip in highstock
- Highstock - custom tooltip data not being displayed for larger dataset
- highcharts: shared tooltip not working for series with diffrent intervals
- HighCharts multiple x series data for line graph
- Change yAxis values in Compare multiple series highstock for showing point value instead of percentage change value
- Highchart step line chart tooltip show old data when there is no data
- How to include strings in series data to pull for tooltip point formatting?
- Highcharts data from Google spreadsheet show line chart for one series
- Make Highcharts tooltip show info for closest point to the left (i.e. not change at midpoint)
- How to get multiple series data in tooltip highcharts?
- Highcharts - only show tooltip when hovering directly on point
- Highchart (Column Chart) : Few data labels are not appearing for a series
- HighCharts: Use shared tooltip only when series overlap
- Highcharts: Disconnect line when there's no data for position
- Highcharts shared tooltip between charts with multiple series and shared tooltip
- Show tooltip programmatically in StockChart for multiples series (highchart)
More Query from same tag
- Horizontal align of the legend. Highcharts
- How get data name in Highcharts pie chart legend instead of "Slice" using array of values?
- highcharts error #13 histogram
- Creating charts and including them in email, a PHP lib that can render to image?
- Highcharts : trouble with axis Label
- Category chart with datetime y axis in highcharts
- Highcharts y-axis units on top
- Rsquare best fit line in actual and precited scatter plot with d3.js/chart.js/highcharts
- HighCharts. Change options dynamically
- react hightchart: add gradient shading to the points
- How to enable noData with highcharts and angular
- Show tooltip in column chart when hovering crosshair line
- How can I combine highcharts with different but similar x-axis categories?
- Set additional information in highcharts tooltip
- Rescale Y-axis in Highcharts after zoom while maintaining zoomType=x behavior
- Highcharts Unable to set value of the property 'point': object is null or undefined
- Highcharts: X axis, MySQL datetime
- Mulitple data points at single point of time highcharts
- Having Trouble Plotting JSON Data in HighCharts
- Highcharts treemap with colouraxis updating styles
- In highcharts how can I provide data with values x, y, title so that I can put the title in the tooltip?
- Highlight one bar in a series in highcharts?
- Boost Enable/Disabled with update Method in Highcharts
- Setting a four hour range in highcharts
- dates cannot be shown on highcharts
- tooltip in highcharts does not work properly
- Last y-axis label not displaying on highcharts spiderweb
- Heat Map With Red Color Range For Negative Values And Green Color Range For Positive Values
- Highcharts and EXTJS 3: Labels in x axis overlap
- Dynamically creating mutiple Highcharts charts in Angular directive