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
- Highcharts - sync crosshair of charts with different width
- Highcharts not displaying tooltip title properly
- How can I use the chart.addButton() method?
- Highcharts combination chart: how to put lines above columns (shift/offset)
- Collapse Highcharts Organization Chart
- Odd Highcharts interaction between pointRange of two columns and xAxis.max
- How to tell Highcharts to set date on the x axis, and use a range of time (like 1 day)
- Flexdashboards and Leaflet and marker click with Highcharts
- Highchart Column hides in the middle of Highchart Scroll bar
- Content besides tooltip are visible
- How to extend plot line value outside the grey area or outside the chart in highchart?
- Load JSON data to Highchart
- Highcharts getjson and changing series type dynamically
- R-highcharter combine tooltips
- Highcharts fill area point interval issue
- Highcharts title animation
- Highcharts more than one series
- Javascript relative time 24 hours ago etc as time
- Starting Time Series Highcharts Plot at specific date/time
- Plotbands in Highcharter - When x axis is date
- read the json file to output to an highcharts
- How can we customise the series data object property names "name" & "y" as part of highcharts-angular?
- Processing JSON data to use in Highcharts
- Highcharts formatting data labels
- Highcharts pie chart loses color on refresh
- time data with irregular intervals in HighChart
- highcart.js pointInterval for 15 days datetime x-axis
- Highcharts: Is it possible to plot sunburst chart with no data values?
- Server-side c# and client side javascript with json loading Highcharts gantt chart Task Progress Indicator, need to change Tooltip and Label name
- Highchart draggable point - watch changes from component