score:2
Accepted answer
I think your data is incorrect for the x-axis where you are trying to put your icon.
You have been using
// Populate the event series based on data in events object
eventChartOptions.options.series.push(
{
data: [[174.0, 65.6]] ,
marker: {
symbol: 'text:\uf183' // fa-male
},
icon: '\uf183',
name: 'Male',
color: 'rgba(119, 152, 191, 0.6)'
}
);
Which indicates a value of 65.4
which is nowhere near the ranges defined for the other axis such as 1390219200000
Changing to
// Populate the event series based on data in events object
eventChartOptions.options.series.push({
data: [
[174.0, 1390219200000]
],
marker: {
symbol: 'text:\uf183' // fa-male
},
icon: '\uf183',
name: 'Male',
color: 'rgba(119, 152, 191, 0.6)'
});
Does render the man albeit at 90 degrees?!
Source: stackoverflow.com
Related Query
- Highcharts with Icon Markers Plugin isn't rendering FontAwesome points
- Resize data points with highcharts
- Highcharts doesn't display series with lots of data points
- Highcharts scatter plot with lots of data points running really slow
- highcharts with null data points
- Wrong alignment in highcharts datetime points with xaxis
- Highcharts - Global configuration with common code and unique data & Headings
- creating a bar chart using Highcharts with React - getting an error that rendering div isn't found
- Highcharts with boost not rendering correctly at small intervals
- Display multiple points with exact same value in scatter HighCharts
- passing formatting JavaScript code to HighCharts with JSON
- HIghcharts column graph with more than 50 data points
- Highcharts line chart all points disappear when have more than one points with same X Axis
- Rendering more than one chart with Highcharts using Angular js Directives
- Dynamic Highcharts with maximum xaxis points
- Why Markers points are not aligned with yAxis in Highcharts?
- Highcharts type flags with custom legend icon
- highcharts no point markers but show single point or discontinous points
- Don't connect points with value 0 in highcharts
- Highcharts pie rendering in conflict with legend
- Highcharts area charts with single data, not rendering
- Plot a bar graph using Highcharts drilldown with two different JSON end points
- Dynamically graph points with Highcharts
- Highcharts not rendering properly with too many series
- How can I specify custom end markers in a scatter series with Highcharts 9?
- Highcharts Synchronized charts with missing data points
- Highcharts series visibility with csv data source
- Fill area beneath scatter points with color in Highcharts 3d scatter plot
- Using JSON data with the jQuery highcharts plugin
- Issue with Highcharts not rendering in Durandal/Hot Towel Template
More Query from same tag
- Add custom logo to Highchart graphs
- Highcharts - line chart dataLabels on every other point?
- SVGRenderer function
- Highcharts don't connect points between years
- Highcharts - How to get horizontal error bars?
- Highcharts: Disable animation for specific event
- Constructing a guage chart with Highcharts
- Fixing flag min/max on Highchart graph
- Negative Fill color in AreaSpline Graph
- jQuery pushing additional calculated data points to HighChart series
- RoR, Javascript - how to automatically update charts from table?
- Highcharts - is it possible to apply opacity for a specific zone?
- Highstock shared tooltip multiple series - show data for line when not on point
- Highcharts Spiderweb after Gauge causes strange behavior
- Two tool tip for two different charts
- yAxis Categories on Scatter Plot
- Highcharts - how to do a responsive pie chart when the texts of the labels are long
- Issue in Ordering of JavaScript libraries
- How to draw mapline with highcharts?
- How to use highcharts' charts.get(location) in React?
- Highstock.js question: how to draw VWAP indicator only for current day data?
- Multiple different chart types stacked, column type with y value as color
- Highcharts issue when start index is less than 0
- convert svg to Highcharts Map
- Multi Color dataLabel in Bar Highchart
- Format of JSON output not working
- Highstock Column Chart dragging issue
- Long length string is not displaying correctly in the chart
- Staged labels for xaxis with zero values
- angularjs & highcharts - setting up properties in directive