Hi there, I am brand new here and not certain if this question has already been asked before but I didn't see it while looking. I am basically trying to achieve front-end formatting: something like this:
//SVELTE
`<script>
import { Grid } from "svar-data-grid";
let data = [
{ symbol: "BTCUSDT", timestamp: 1711803252835, price: 68000 },
{ symbol: "ETHUSDT", timestamp: 1711804252835, price: 3800 }
];
function formatTimestamp(value) {
return new Date(value).toLocaleString(); // Human-readable date
}
let columns = [
{ id: "symbol", name: "Symbol" },
{ id: "timestamp", name: "Date", formatter: formatTimestamp }, // Apply formatter
{ id: "price", name: "Price" }
];
</script>
<Grid {data} {columns} />`
Where sometimes the API/database returns one format of a particular column and I need to on-the-fly change that formatting for a particular column. I have basically checked out as much as I could looking for anything remotely similar to be able to add custom formatting to columns; however do not see anything that directly addresses this. Would it be possible to add this functionality to svar where custom formatting could be applied?
Other than that I am blown away with the functionality of what svar offers otherwise, but am just looking for that one little thing there at the moment. Any suggestions on how to go about custom formatting specific column data output?