Questions tagged [foundry-slate]

Questions related to development using Palantir Foundry's Slate application are appropriate for this tag.

Palantir Slate is an extensible WYSIWYG web-based application used to quickly create interactive visualizations of aggregate enterprise data.

69 questions
1
vote
2 answers

How do I view version history on my Foundry Slate App

For Foundry Slate, I've made an edit that I want to revert as it had broken my usecase. I've tried looking at the documentation and was unable to find it, but I know a commit history between users is kept somewhere in the UI. Wanted to know where in…
Mihir
  • 982
  • 1
  • 7
  • 13
1
vote
1 answer

How to make multiple lines using Line Chart in palantir-slate application

How to make multiple lines using Line Chart in palantir-slate application? I want to draw multiple lines in the same x axis.
1
vote
1 answer

How can I debug a function in Foundry Slate?

I've got several functions that are fairly long and complicated, and I want to debug them. Is there any built in debugging functionality to help me debug my complicated functions?
Adil B
  • 14,635
  • 11
  • 60
  • 78
1
vote
1 answer

Can you pass arguments to functions in Slate?

In Foundry's Slate application, is there a clean way to write functions that accept arguments as input using the handlebar syntax?
Adil B
  • 14,635
  • 11
  • 60
  • 78
1
vote
1 answer

How do I format the text in a `hover` tooltip of a Slate Bar Chart?

In my bar chart, I have large numbers that are hard to read quickly. I'd like to add commas to make it more readable. For example: 123456789 --> 123,456,789 How do I do this in Slate?
icharbon
  • 191
  • 6
1
vote
1 answer

How can I conditionally style a Table Cell, Row, or Column in Slate?

I have a table with a bunch of different values, and I want to style each cell to have a certain color depending on the value. How can I do this in Slate?
Andrew St P
  • 524
  • 1
  • 5
  • 13
0
votes
0 answers

How to use iframe widget into Workshop application

I'm trying to use the new iframe widget into workshop application with slate as input. (https://www.palantir.com/docs/foundry/workshop/widgets-iframe/index.html) I do not understand how to use input / output and triggerable events into this…
0
votes
1 answer

Palantir Foundry - Slate Dashboard - Sync error

I have a Slate Dashboard Developed in Foundry. Until last week, I had no issues in plotting the data to the dashboard graphs that were created. The Issue: Unfortunately, in the past 5 days when we try to load the Slate Dashboard, we are unable to…
Dasarathy D R
  • 335
  • 2
  • 7
  • 20
0
votes
1 answer

How to make the label appear in gantt chart even if the area is small

Ref this screenshot of Gantt Chart in Slate, when the bar is small the label 1 is not visible, How to make the label small dynamically so that it fits within the bar area instead of becoming blank value. css code or html code to make the label 1…
Asher
  • 175
  • 11
0
votes
1 answer

Unable to post to Phonograph , getting readonly error

When i am trying to update a row in Phonograph i am getting the following error. q_update_phonograph threw the following error: { "errorCode": "INVALID_ARGUMENT", "errorName": "Phonograph2:ReadOnlyTables", "errorInstanceId": "instanceId", …
0
votes
1 answer

How do I trigger an action in Slate after a dropdown changes?

I want to submit an action in Slate as soon as a dropdown value changes (the action should take the selected dropdown value as a parameter). The dropdown: w_dropdown_1 The action form: w_foundry_action_1 with I added an event like the one…
Max Magid
  • 245
  • 1
  • 8
0
votes
1 answer

How can I writeback data through Slate using Table Storage Service?

I am trying to update a value in a writeback dataset and want to use Slate/phonograph2 and the Table Storage Service-endpoint: Post Event. But I receive the below error: “errorCode”: “INVALID_ARGUMENT”,“errorName”:“Phonograph2:ReadOnlyTables”
Max Magid
  • 245
  • 1
  • 8
0
votes
1 answer

Can I copy a widget from one Slate app to another?

Is there a way to copy a widget that I have fully configured in one Slate app to another one? I would like to avoid having to recreate everything.
Max Magid
  • 245
  • 1
  • 8
0
votes
1 answer

How can I remove the iFrame widget border in Slate?

I have an IFrame widget in Slate, and it has a gray border around it as in the screenshot below. I want to embed the IFrame in my app, but I need the format to fit more seamlessly into the rest of the app. I have tried looking in the styles tab…
Max Magid
  • 245
  • 1
  • 8
0
votes
1 answer

How do I make a query calling from and to date values from date range picker?

I am trying to filter a table on slate by doing this query SELECT * from "foundry_sync"."master_dataset" WHERE event_date >= ( {{w_date_range_picker.fromDateValue}} ) AND event_date <= ( {{w_date_range_picker.toDateValue}} ) But I am getting the…
Luis Valdes
  • 37
  • 1
  • 5