score:1
Accepted answer
for adding extra text on the chart use highcharts. svgrenderer
api reference: https://api.highcharts.com/class-reference/highcharts.svgrenderer
sample code:
chart: {
type: 'funnel',
events: {
render: function() {
let chart = this,
point1 = chart.series[0].points[4],
x = point1.dlbox.x + point1.dlbox.bottomwidth + chart.plotleft + 1,
y = point1.dlbox.y + chart.plottop - point1.dlbox.height;
if (!chart.mycustomtext) {
chart.mycustomtext = chart.renderer
.text('1% <br> did')
.css({
fontsize: '10px',
zindex: '3px'
})
.add();
}
//pdate text coordinates
chart.mycustomtext.attr({
x: x,
y: y
})
}
}
},
Source: stackoverflow.com
Related Query
- How to add text on every section edges in funnel highcharts
- how to add text in top,left and bottom in funnel highcharts
- how to add annotation text to a Highcharts chart?
- How to add thousands separator in highcharts tool tip text box
- How do i add mouse wheel code in Angular2 highcharts in typescript
- how to add dashed border on highcharts "area" graph for every point
- How can I add a text link just below the legend box in highcharts
- How to add text labels to a numerical x axis in Highcharts
- how to add copyright symbol in a highcharts title?
- How do I add an event listener to a Highcharts object *AFTER* I've created it
- How to change the text color in Highcharts
- HighCharts Pie Chart - Add text inside each slice
- How do you add text to the bottom center of legend and bottom center of chart under legend?
- How to add image in Highcharts Title and subtitle
- How to add Highcharts on UIWebView in iOS?
- How to add space between chart and axis in highcharts
- How to add secondary y-axis to highcharts
- How to add a label above each bar in HighCharts
- How to add an item to Highcharts legend?
- How can I force highcharts to show every x-axis label regardless of spacing constraints?
- How to add text to the bottom of a Highchart, but above the legend?
- How to modify Highcharts x-axis tooltip text
- How to add new points to highcharts after plotting the first 'n' points?
- How to remove text which was added via chart.renderer in Highcharts
- How to add background colors to category groupings in Highcharts
- HighCharts : How to add or remove "chart context menu" from chart container?
- How to add point to the beginning of series, Highcharts
- HighCharts Funnel - Set minimum size of each section
- How to add a horizontal line in Column bar chart in Highcharts plugin?
- How to add series after click event in HighCharts
More Query from same tag
- How to align the xaxis tick mark center
- Highcharts remove theme background before printing
- Entire Highchart API calling from JSON file
- Positioning Highstock Zoom Buttons outside the chart area within a <div>
- Highchart Treemap: forcing layout on 3 lines
- Add label in into square Highcharts Gant
- SCRIPT87: Invalid argument In IE8 Using HighCharts v3.0.5
- load data in highcharts from 2 different csv files
- Add textbox to chart and draw strings
- Cannot give different values to diffrent Bar item click in HighChart
- Highchart-ng not displaying inside a directive
- Displaying a Highchart Line Chart in Mapbox Marker Pop-up
- Highcharts Export without internet
- Place plotline above one series, but below another series
- Defaults for Highcharts graphs
- how to display Highcharts from database in C# .Net
- Highcharts missing even months on x-axis
- Selecting a point by ID using Highcharts
- Selectable text at Highcharts tooltip
- negative axis values glitch the chart
- HighMaps Undefined ZoomTo()
- colour range in javascript
- How to show BAr graph rather than line graph in High Stoch Chart
- How to style two different legends in HighCharts
- Cannot display a legend with special character in highchart from the serie name
- Make Highchart use a specific targeted time zone
- Highcharts: connectNulls == false doesn't work in stack area chart
- Is it possible to select a different color for one candlestick?
- Highcharts - Add difference between y-points
- Strip/escape special characters from Google Spreadsheet field before passing data to Highcharts Graph