Can't remove a board in Quiver - palantir-foundry

I have been working in Quiver and I was writing a sequence of transformations. I wanted to delete a chart in Quiver, however, I wasn't able to. What Quiver says is that Card is used by other cards, see screenshot below.
The chart is the last chart in the transformation sequence. I checked every possible connections to different cards, however I didn't find any.
Do you know if there are some "hidden" connections in Quiver between cards to check that would allow me to delete the chart?
Thanks

Related

Google Analytics: events suddenly only showing in realtime report but not in other reports

I built an Apps Script in which I'm using GA to track usage. This has worked flawlessly for about three months now, but all of a sudden, event hits and values are no longer visible in my reports - except for the realtime event report, where I still see events coming in.
This is one of the reports in which I don't see the events anymore (see the flat line for the last couple of days):
non-realtime report
This is what I see in the realtime event report:
realtime report
I really don't know what to do. Any ideas? Did GA introduce any changes that might have caused this?
Any help is really appreciated - this is a really important project for me! :(
Your screenshots really don't show many details about reports.
Your non-real time screen shot doesn't indicate a problem. Looks like the volume of events went down, but you're still getting them. Try making a screen shot that indicates the problem. Also capture more info in it. Like dates, filters and dimensions pulled. Always capture these in any analytics screenshots.
Make sure your report doesn't contain filters that filter out the hits. Also check your view to make sure it has no filters in it.
Make sure the dimensions you're pulling in your report are properly set in the events, which real time may not show. So use on-site debugging to see if they're set.

Foundry Workshop or Quiver - Aggregation editable by user in view mode, is it possible?

Is it possible in Workshop or Quiver to expose an aggregated bar chart where aggregation property is changeable by user (in reading mode). For instance by offering to user a dropdown that lists properties to aggregate on.
I guess the function presented in this thread can do the job. And then it should be a story to create dropdown widget and chart plugged on the function result. But I miss experience in Workshop or Quiver. Can some one help me with more detail ? Thank you by advance.
I want to move from Slate to Workshop/Quiver applications without loosing this feature.
One approach is to use a Function-backed chart and the approach you linked to.
Another option is to change your data structure to a "metrics"-style schema like:
|id|main_object_foreign_key|type|timestamp|value
And then make a chart based on filtering on the metric type property with the series also set to the Type value.
This effectively lets the user control what "metrics" to show on the chart by providing them with a filter element.
There are some downsides with this approach, but adding a representation of your data in this format can bring a lot of flexibility to certain kinds of visualization or workflow building needs.

Send current state of Kendo Grid to SSRS

I am setting up a couple grids with sorting, grouping and filtering options. Once the grid is in the state the user wants, I want to use a 'Print Grid' button to send the state to ssrs 2008, to basically make a printable version of the grid. I have found how to get the state (http://jsbin.com/erefug/1/edit) but I can not find how to send it to ssrs.
I have done just a standard url to a report plenty of times, and I am thinking I somehow need to get the state info into the url, but I am at a loss on how to do that, or if it is event he way to go. Let me know what you think.

LabView: Icon identification

I'm entirely new to LabView, and as a pet project, I'm trying to recreate a pulse detector. Thing is, the version of the .VI is LabView2010, and I can't open the.VI in LabView2009, so were trying to remake it by looking at the module. I do however, have the image, but since I'm pretty new, I can't identify some of the components used. Below is an image of the .VI, as well as, the parts I don't know encircled with red and enumerated. What exactly are these? Thanks!
To make a shift register, right click on the edge of the while loop and place a shift register. The Wait (ms) node is found in the timing functions pallet. #1 and #3 are found in the waveform generation pallet. And #2 is a waveform graph that is bound to the output of the filter. Just right click on the output of the filter and create an Indicator
I only have limited experience with the specific features in this code, so I don't have exact names, but it should point you in the right direction:
2 is a dynamic data indicator.
1 converts it to a waveform (it probably appears automatically if you hook up a DDT wire to a WF function.
3 unbundles the data from the waveform. It should be in the waveform palette.
4 is a shift register.
5 is a wait function.
In general, I would recommend that you get to learning, as you will need to understand these things to at least that level before you can be proficient.
Also, the NI forums are much more suitable for this type of question and they have many more users. I would suggest if you have such questions which you can't answer yourself, then post them there.

Iterating through array of objects, populating BarChart, and saving each as image

I am creating an option in my application to create a PDF report based on the results from the application.
The results are represented as an ArrayCollection of XMLList objects, which I am using to populate a BarChart.
To create a screenshot of each result (as a PNG), I am loading the Results Window (a Title Window) and hiding it (visible = false). I am using AlivePDF to add the capture to a PDF report.
I have been using a Timer to iterate through the results, load each result to the chart, create a delay, and then capture the image and add it to the report.
I am now questioning my strategy and I was wondering if anyone has a suggestion as to any other possibilities.
I thank you for your help in advance.
P.S. I am not creating a client/server application. I need to create the images on the client side.
UPDATE
Sorry about the confusion with my question.
Currently, I am able to iterate through the results (using the Timer), but the chart does not refresh properly before capturing the screenshot and saving as PNG.
Essentially, I am trying to see if there is any other possible solutions for iterating through the results and creating a delay so that I may be able to load a result to the chart, capture the screenshot, and add it to a PDF. Is there any other way to do this in Flex?
Initially, I was thinking of iterating through the results array using a for loop, but this was not working due to the fact that the results were not loading in time before capturing the screenshot of the chart.
Once you set the chart's data it should eventually display the updated information. However the time taken will vary upon any number of factors so your best bet is to find out what event the chart dispatches once it updates. You may at that point want to capture the PNG as a callLater just in case you need an extra frame before the visual aspects are updated.
That said, this seems like a heavy-handed solution begging for an alternative.