score:6
Edit:
In the latests versions (v4 at least) in Renderer API methods useHTML
argument was added, for example renderer.text(str, x, y, useHTML)
- which will render elements as HTML and position them correctly. Of course simple shapes (rect
, path
etc.) are always rendered in SVG/VML.
Extra note: For HTML
elements, to see them on exported chart, don't forget to set exporting.allowHTML
.
Old answer:
Renderer is to render elements on SVG/VML. If you want to add HTML tags, add them the same way as is done in Highcharts - position:absolute and set left/top values to put this inside container.
score:0
you can refer in this website . http://pmsipilot.github.io/jquery-highchartTable-plugin/#demo
Hope it will help.
score:16
You will have to use Highcharts Renderer API.
You can refer this JSFIDDLE working demo
it works like:
var chart = new Highcharts.Chart({
....
.....
......
}, function(chart) { // on complete
chart.renderer.text('This text is <span style="color: red">styled</span> and <a href="http://example.com">linked</a>', 150, 80)
.css({
color: '#4572A7',
fontSize: '16px'
})
.add();
});
Source: stackoverflow.com
Related Query
- Highcharts: How to add HTML inside of chart area
- HighCharts Pie Chart - Add text inside each slice
- How to add space between chart and axis in highcharts
- how to get chart object inside a point event function in Highcharts
- Highcharts - How can I remove starting and ending padding from area chart
- Highcharts 3.0, area chart with stacked and unstacked series - how to fix?
- How to center chart title position dynamically inside pie chart in highcharts
- HighCharts : How to add or remove "chart context menu" from chart container?
- How to add a horizontal line in Column bar chart in Highcharts plugin?
- How do i add mouse wheel code in Angular2 highcharts in typescript
- Highcharts - In area chart how to use gradient color for multiple series?
- how to add new index Highcharts column drilldown chart
- How to add different click events on each pie of a pie chart created by highcharts usin jquery
- how to add onclick event handler inside highcharts tooltip
- Highcharts display label for pie chart using html table as data source
- HighCharts how to add live series data set to existing chart
- Highcharts: How to add a text panel on the side of the chart area
- How to add negative area or background for a specific bar or pie chart in highcharts?
- Highcharts Chart Bar - How can I display in the chart, only one column from my HTML table?
- Add text inside a circular progress pie chart bar using HIGHCHARTS
- How to add inline legends to line / area mixed chart in highchart
- Highcharts - How to show intermediate values on Area chart
- how to add color inside a 3d chart in highchart js
- How to add image/icon to a chart in Highcharts
- how to add border radius on plotbackground area in highcharts
- Highcharts - how to add additional information to chart
- HighCharts / Highstock How to build 100% stacked area chart
- How to add Modal pop up on nodes of org chart Highcharts
- How do I add a dropdown to change endRow value in a chart displaying date from an HTML table
- How to add a line at the bottom of a column chart in highcharts
More Query from same tag
- Highcharts - How to display legend symbol inside the tooltip
- How to create two plot areas with highcharts
- Call addPoint hang in HighCharts
- Highchart : xaxis Adding extra Dates randomly
- Issue with click function highcharts-ng and Angularjs
- Making tooltip behave like in scatter
- Django chartit loading jquery and highcharts js
- Looping data inside highchart.js using type column chart
- Highcharts area chart hide graphs with one data point
- How to disble invisible legend padding in highcharts?
- Scrollbar is not working with Dumbell Chart in Highchart
- Highchart: How to graph from Radio Button
- Non-contiguous time series in Highcharts
- Highcharts yAxis tick interval
- highcharts, how to prevent series hover event to cause hover event on nearest point(marker)
- Implementing High charts with PHP and Mysql
- Where can I find the API documentation for older versions of Highcharts?
- HighCharts Animation By Column
- Apply different colors to different words according to their weight using Highcharts API
- How to Plot chart from two different webform Submission data And Wand to Display annotated point
- Highcharts chart keep increasing its height on browser resize
- How to programmatically set navigator handles in highstock?
- How to add vertical (and horizontal) line in highcharts scatter plot
- Highcharts. Series highlighting not showing up in download
- Highchart - adding more series to one of multiple synced highstock charts
- Highcharts X-Axis value on top of stacked column
- Datalabel placement - Opposite of of chart data (positive and negative values)
- Highcharts: Sort x-axis value from multiple CSV files
- How can I pass values from Highcharts event callbacks (click, mouseOver, mouseOut) back to React component member function?
- How to show javascript id data into piechart (Highchart.js)?