Questions tagged [flexmonster]

A pivot table component for web reporting

To use Flexmonster in a pure JavaScript project, follow the steps below.

Step 1. Add a container for Flexmonster Create a <div> container for the component:

<div id="pivotContainer">The component will appear here</div>

Step 2. Include Flexmonster in the HTML page Download Flexmonster if it is not added to your project yet.

Then, include the component in your webpage with one of the following scripts:

<div id="pivotContainer">The component will appear here</div>
<script src="node_modules/flexmonster/flexmonster.js"></script>

Step 3. Embed the component Add a simple script to embed the component into the webpage:

<div id="pivotContainer">The component will appear here</div>
<script src="node_modules/flexmonster/flexmonster.js"></script>

<script>
    let pivot = new Flexmonster({
        container: "pivotContainer",
        componentFolder: "node_modules/flexmonster/",
        toolbar: true
    });
</script>
5 questions
1
vote
1 answer

How to fix this.TD[this.j5] is null using Flexmonster

I work on local environment and I use Next like framework. I use flexmonster component for react (https://www.npmjs.com/package/react-flexmonster) When I make some modifications the current flexmonster component shows me this error :…
Jocelyn Nsa
  • 474
  • 6
  • 10
0
votes
1 answer

How can I update flexmonster toolbar in real time?

I'm using flexmonster chart in my project, in the toolbar, I have a button with a custom menu. once the user is saving the data I want to add / delete items from that menu. in flexmonster documentation they say that I can change the toolbar by…
richard nelson
  • 247
  • 4
  • 12
0
votes
1 answer

WebDataRocks Highcharts not updating data when filtered

When filtering on a parent row in the slice; the child row (which is set as the row slice on the chart) is not updating. The chart does not change. Below is the JavaScript code. If you filter the pivot table on country, the chart does not change…
0
votes
1 answer

Do webdatarocks supports muliple pivot report and chart on dashboard

Do webdatarocks supports muliple pivot report and chart on dashboard. I need to load a list of reports, on first row – report 1 with pivot table and chart and on row two – report 2 with different data as its chart values and so on. is it possible…
0
votes
1 answer

Flexmonster - Cannot format values in first column

I'm trying to configure the following code in order to format the PROFIT column (which is the first one) as a currency. Here you have a JSFiddle with the code below which is not working in a snippet: https://jsfiddle.net/tlg265/eo1bkjwy/ Right now…
Viewsonic
  • 827
  • 2
  • 15
  • 34