- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2017 03:58 AM
I have created a report using the high chart API . i want to create a hyper link to the reports generated.
As we can see in out of box functionalities in service-now in reporting ,the same functionality is needed in high chart as well.
Solved! Go to Solution.
- Labels:
-
Analytics and Reports
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2017 07:10 AM
Hi Amarjeet,
If I understand correctly, this JS Fiddle shows a great example of providing clickable URL's through the HighChart API and here's the HighChart API Reference. This gist of it is that you need to use the click event's object in your chart configuration which looks something like the following:
{
...
plotOptions: {
series: {
point: {
click: function () { location.href = 'url here'; }
}
}
}
...
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2017 05:21 AM
Hello Amarjeet,
According to my knowledge the high charts are created on custom UI page which includes the ServiceNow prototype adapter in it, as said in the below link.
Please take a look
I am a creator — Custom Dublin HighChart Chart Report - Jay Ford
If you have purchased additional license from Highsoft to get the whole uses of HighCharts then refer to the below link
https://codecreative.io/servicenow/intro-to-highcharts-in-service-portal
Thanks,
Tanuja
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2017 07:10 AM
Hi Amarjeet,
If I understand correctly, this JS Fiddle shows a great example of providing clickable URL's through the HighChart API and here's the HighChart API Reference. This gist of it is that you need to use the click event's object in your chart configuration which looks something like the following:
{
...
plotOptions: {
series: {
point: {
click: function () { location.href = 'url here'; }
}
}
}
...
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2017 08:30 AM
If you're trying to create a more advanced report that is live, drillable, and embedded in the ServiceNow homepage, you can get what you need without having to write any code at all using Explore Analytics.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2017 04:55 AM