We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's say we have following table:
writer.SetHeader([]string{"0", "1", "2", "3"}) writer.Append([]string{"A", "a", "c", "-"}) writer.Append([]string{"A", "b", "c", "-"}) writer.Append([]string{"A", "b", "d", "-"}) writer.Append([]string{"B", "b", "d", "-"}) writer.Render()
SetAutoMergeCells(false)
+---+---+---+---+ | 0 | 1 | 2 | 3 | +---+---+---+---+ | A | a | c | - | +---+---+---+---+ | A | b | c | - | +---+---+---+---+ | A | b | d | - | +---+---+---+---+ | B | b | d | - | +---+---+---+---+
SetAutoMergeCells(true)
+---+---+---+---+ | 0 | 1 | 2 | 3 | +---+---+---+---+ | A | a | c | - | + +---+ + + | | b | | | + + +---+ + | | | d | | +---+ + + + | B | | | | +---+---+---+---+
I'd like to get hierarchical merging: cells are merged only if prepending cell was merged. How can I achieve this?
+---+---+---+---+ | 0 | 1 | 2 | 3 | +---+---+---+---+ | A | a | c | - | + +---+---+---+ | | b | c | - | + + +---+---+ | | | d | - | +---+---+---+---+ | B | b | d | - | +---+---+---+---+
The text was updated successfully, but these errors were encountered:
Does this project have maintainers?
If so, I will like to fix this. If not, I don't mind taking over the project.
I have other issues with this table I'm planning on fixing.
Sorry, something went wrong.
No branches or pull requests
Let's say we have following table:
SetAutoMergeCells(false)
SetAutoMergeCells(true)
I'd like to get hierarchical merging: cells are merged only if prepending cell was merged. How can I achieve this?
The text was updated successfully, but these errors were encountered: