ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Can you plot a single point on a scatter map to indicate my office location vs my data plots Thanks Vadim - that worked perfectly! Re: Can you plot a single point on a scatter map to indicate my office location vs my data plots Hi Vadim, That is great, that worked! I have one more question about this one, do you know if it is possible to use a URL to define the location of the icon-marker.png and icon-shadow.png to plot on the map? I tried a URL in the imagePath option above and it didn't load an image, so I wonder if I need to define that differently. Basically, I am looking now at whether different users could define a different marker image based on their code and the images being available in a location online, rather than necessarily having to use the same icon from the plugins/images folder. Thanks! James Re: Can you plot a single point on a scatter map to indicate my office location vs my data plots Hi Vadim, Thanks for taking a look at a widget script option. I can see that an image is trying to load at the co-ordinates I have used, but the images themselves are getting a 404 not found error. I think I have them in the correct place: C:\Program Files\Sisense\app\resources\Branding\customImage But on the map it showing box where it tries to load the image: And developer tools say it cannot find the marker-icon.png and marker-shadow.png with error 404: Do you have any thoughts on what I might be doing wrong? Thanks, James Re: Can you plot a single point on a scatter map to indicate my office location vs my data plots Hi Vadim, Thanks for the reply. I am unable to amend the data source to do this, but tried adding the entry to the geoLocation collection in mongo and wasn't able to get this manual point to add to the map, when I plotted data points as usual, it wasn't there, just the points from the data itself. I'm also not sure that adding to the MongoDB directly will work as we host 10 different organisations in a single MongoDB, each with access to their data using data security. They would all need their own "office" with different locations and I'm not sure that we could restrict their own single custom point to just themselves. I was hoping there may be some way to plot a different icon of some kind using widget script with set co-ordinates within the Sisense application, but it sounds like that might not be possible. Thanks, James Can you plot a single point on a scatter map to indicate my office location vs my data plots Hi everyone, I am wondering if anyone has any widget script that allows you to plot a single point on a scatter map widget that allows you to easily see how your usual plot points are located compared to that specific location? For example, if my office is based at a specific set of co-ordinates, I would like to add a marker to that location to easily see where it is on the map, compared to the points that are plotted from my data. I know that you can use set and center a map using the article here: https://community-old.sisense.com/hc/en-us/community/posts/221227568-Center-Zoom-Scatter-Map but just wondered if anyone had managed to ever add a plot instead Thanks, James SolvedWhen using Every Elasticube Update send option send when final elasticube is processed not the first Every day we process our elasticubes and they always process in the same sequence. Users are able to create dashboards that have widgets from different elasticubes. However when they select to send the dashboard by email on "Every Elasticube Update" this sends after the first of the elasticubes has processed, rather than waiting until all of them have updated. This means users are emailed dashboards that have some data correct, and some that is old. I think the solution would be an option to send after all of the elasticubes in the dashboard have updated, or to select a specific one, if the elasticubes generally build in a particular order. It would be good if this could be considered for enhancement as users wouldn't want to receive partially correct dashboards in this situation. Thanks, James Re: Define Widget Navigator Scroll Position intapiuser - The above is really useful, I don't suppose you or someone else may know how to adapt this to also include forecasts? The script also seems to work for a line chart with dates across the x-axis, in that this will show me the last 14 days: //======================= Configuration ======================= //Number of bars you would like to display, starting from the last bar var displayBars = 14; //================================================================ widget.on('processresult',function(widget,args){ //define the maximum bar count to be the series length, minus 1 because the below is zero indexed. var maxBarCount = (args.result.series[0].data.length - 1); args.widget.options.previousScrollerLocation.min = maxBarCount - displayBars + 1; args.widget.options.previousScrollerLocation.max = maxBarCount; }); However, it doesn't show me the forecast period, just the actual data points: Ideally, I am looking for something that shows the last 14 days, and also the forecast period, like this: Thanks, James