Caleb Faruki
Caleb Faruki
This getting merged anytime soon?
Here was my approach. Functional component implementation. ```js import React, { createRef, useEffect, useMemo } from "react"; import { StrGantt } from 'gantt'; export default function Gantt ({ data })...
https://github.com/d-band/gantt/issues/26#issuecomment-924150507
https://github.com/d-band/gantt/blob/ed89285a86af2fe907c66957aba17529baf7451d/src/gantt/index.js#L24 You can change the column width for the row labels when using `StrGantt`. But it will be 140px by default. If you use `CanvasGantt`, it will be set dynamically...
MacBook Pro (15-inch, 2019) macOS Big Sur v11.6 Homebrew 3.3.11 Homebrew/homebrew-core (git revision 37d19f29a9c; last commit 2022-01-21) Homebrew/homebrew-cask (git revision b3983e9680; last commit 2022-01-21) ```sh cfaruki@home[develop !] brew tap osgeo/osgeo4mac...
+1 It's really not good practice to write this whole library and not document how to use the methods.
Ah, didn't realize you were a collaborator on Parsley! In that case, I guess this issue is best suited as a feature request.
Definitely need this. My project pulls in the index.js file from `node_modules`.
Do this: ```rb template = 'template.pdf' pdftk = PdfForms.new('/usr/local/bin/pdftk') temp_output_file = Tempfile.new('temp_output.pdf') final_output_file = Tempfile.new('final_output.pdf') stamp_path = Rails.root.join('public', 'leadguard_stamp.pdf') pdftk.fill_form template, temp_output_file.path, data = {}, flatten: true pdftk.multistamp temp_output_file.path, stamp_path,...