How to create gap between two groups

Stimulsoft Reports.NET discussion
Post Reply
hammad
Posts: 14
Joined: Wed Jan 21, 2015 4:58 am

How to create gap between two groups

Post by hammad »

I am trying to create a one page report that shows
1. Paid Customers
2. Unpaid Customers

I have created two data sources and placed two header groups on a page. Lets say I have 4 entries in paid customers and 2 entries in unpaid customers, I want to place a Text book between the two headers that says "Unpaid Customers". But the issue is the two groups are always placed next to each other. I can add space between them.

Is there a way to add space between the two groups so I can add my control or some text that show what data this group will be displaying?

Here is a screenshot of my reportImage
Thanks
Last edited by hammad on Fri Feb 20, 2015 3:52 am, edited 1 time in total.
hammad
Posts: 14
Joined: Wed Jan 21, 2015 4:58 am

Re: How to create gap between two groups

Post by hammad »

What I have found is to add a new Group Header and use that to place text between the two headers. This actually worked. But is there a more straightforward solution?
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: How to create gap between two groups

Post by HighAley »

Hello.

Sorry, maybe we don't understand the issue.
Could you send us your report template with sample data to reproduce the issue?

Thank you.
hammad
Posts: 14
Joined: Wed Jan 21, 2015 4:58 am

Re: How to create gap between two groups

Post by hammad »

I have tried to clarify my original post also. Basically I want to add space between two header groups? How can I do it?

Script for the database is

Code: Select all


create database test
go

use test
go

CREATE TABLE [dbo].[students](
	[id] [int] IDENTITY(1,1) NOT NULL,
	[name] [varchar](20) NULL,
	[rollno] [int] NULL,
PRIMARY KEY CLUSTERED 
(
	[id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO


insert into students values('joe',1)
insert into students values('mike',1)
insert into students values('sal',1)
Attachments
header spacing.mrt
.mrt file
(9.99 KiB) Downloaded 391 times
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: How to create gap between two groups

Post by HighAley »

Hello.

You could add a group footer if you need additional space.
Please, look at the attached report template.

Thank you.
Attachments
header spacing.mrt
(9.53 KiB) Downloaded 407 times
Post Reply