Questions tagged [tablesaw]

Tablesaw is a group of plugins for responsive tables in web applications.

Tablesaw is a group of plugins for responsive tables in web applications.

Homepage:

https://github.com/filamentgroup/tablesaw

15 questions
6
votes
2 answers

Tablesaw headers not shown on mobile

According to their examples and documentation you should be able to see the headers when you are on a mobile phone: tablesaw doc table-saw demo However when i attempt this with the following table:
Marc Rasmussen
  • 19,771
  • 79
  • 203
  • 364
3
votes
2 answers

can't "refresh" filamentgroup tablesaw responsive table after adding new rows

I am using a combination of the AngularJS Utils pagination directive and the filamentgroup tablesaw responsive table library to try and get a responsive (by swiping right), paginated table. Once I have populated the table I call the tablesaw…
Ben Thomson
  • 1,083
  • 13
  • 29
1
vote
1 answer

Using Libraries In Netbeans Java With Ant

This is my first StackOverflow question, and I'm also a Grade 12 student, so apologies if it is a stupid one - feel free to let me know if it is, however, after numerous hours searching the internet, I can't find an answer to this. this is not…
1
vote
1 answer

#Tablesaw #Java When exported to csv, the table is reduce to only the last element of the list

I self learn Java, and I am trying to do some programs for work. As in the title, the Table looks fine. But when I export to Csv only the last element is saved. I must have made a mistake somewhere. Your help will be strongly appreciated. public…
1
vote
0 answers

tablesaw library: join tables with different column type

I need to use dataframe library to join the results of two different queries, or query result with the JSON result. I did some research and found the tablesaw library. During the implementation, I faced some problems. Does anyone have experience…
user1187329
  • 191
  • 1
  • 16
0
votes
0 answers

java sonar error List" cannot contain a "Function"

I have following code in java which is causing error in sonar. The code is as : private Table sliceTable(Table table, String[] columns, Map> reportFields) { TableSliceGroup tableSlices = table.splitOn(columns); …
Scientist
  • 1,458
  • 2
  • 15
  • 31
0
votes
0 answers

Can I make this function more optimized and clear?

So I am currently making a REST app where I receive excel files through requests ,then I use Tablesaw to read excel files and MongoTemplate to save tables in MongoDb . I created this simple function to map results in a way that it looks clean when I…
0
votes
2 answers

Tablesaw: how to get the original rows' index after filter?

How can I retrieve the original rows' index after performing a query on the dataset? I'am using JTablesaw as a Dataset library in Java, and I'm looking for a way to get the original rows' index after performing a query/filter on it. E.g. considering…
1Z10
  • 2,801
  • 7
  • 33
  • 82
0
votes
0 answers

jtablesaw: how to set the font size on the legend?

does anybody know how to set the font size in a jtablesaw legend ? I could not find any legend object , it seems one can only set "showLegend(true|false)" when creating a layout ...
greg2999
  • 1
  • 1
  • 2
0
votes
2 answers

Reading excel using Tablesaw is causing OutOfMemoryError

I am using following api to read data from excel as a Table: https://jtablesaw.github.io/tablesaw/gettingstarted The code is as follows: XlsxReader reader = new XlsxReader(); XlsxReadOptions options =…
Naresh Chaurasia
  • 419
  • 5
  • 21
0
votes
1 answer

How can I SET a value on a tech.tablesaw.api.Table?

I have a tech.tablesaw.api.Table that got filled by SQL Result Set. But I want to overwrite one of the columns with other values before running SMILE (the setValue method below doesn't exist, but I'm looking for something like that). Is the Table…
fandang
  • 605
  • 1
  • 6
  • 14
0
votes
1 answer

Run main file in Intellij

In Intellij there is no Run button when click right mouse button. I try to add new configuration as "new application" but file which I want to run go grey in settings. This file is example of tablesaw-jsplot which include main method.
user2856064
  • 541
  • 1
  • 8
  • 25
0
votes
1 answer

Tablesaw does not work on Safari

I have a table that implements tablesaw-stack mode. It works fine on Google Chrome, Mozilla Firefox, Internet Explorer, Edge until recently I found out that the tablesaw layout is distorted on Safari/iOS Safari. I have tried with the latest version…
Brian Cheong
  • 61
  • 3
  • 12
0
votes
2 answers

Tablesaw in Angular2+ not working when I get my data from service

Im using Tablesaw in my Angular 5 project but its not working when Im getting my table data from service but its working with static data. export class MmrParticipationListComponent implements OnInit { pid; mid; participationList; approversList =…
-2
votes
1 answer

IOException while trying to load an Excel file with Tablesaw (java)

I am new in Java, and I am trying to use tablesaw (https://jtablesaw.github.io/tablesaw/) to do some data visualization, but I get an IOException during the import of the file (see code below). I have tried various functions and methods of tablesaw…