root/trunk/RaportySQL/AnalizaKontaktowISprzedazy.rdl @ 951

Wersja 130, 25.4 KB (wprowadzona przez marek, 17 years temu)
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
3  <DataSources>
4    <DataSource Name="BAZA_REKLAM">
5      <rd:DataSourceID>38ed669d-1480-42c9-a131-3541eb1020c1</rd:DataSourceID>
6      <DataSourceReference>BAZA_REKLAM</DataSourceReference>
7    </DataSource>
8  </DataSources>
9  <InteractiveHeight>29.7cm</InteractiveHeight>
10  <rd:DrawGrid>true</rd:DrawGrid>
11  <InteractiveWidth>21cm</InteractiveWidth>
12  <rd:GridSpacing>0.25cm</rd:GridSpacing>
13  <rd:SnapToGrid>true</rd:SnapToGrid>
14  <RightMargin>2.5cm</RightMargin>
15  <LeftMargin>2.5cm</LeftMargin>
16  <BottomMargin>2.5cm</BottomMargin>
17  <rd:ReportID>d0a91cad-1242-460b-89c7-3902955a12fb</rd:ReportID>
18  <PageWidth>21cm</PageWidth>
19  <DataSets>
20    <DataSet Name="Kontakty">
21      <Fields>
22        <Field Name="rok1">
23          <DataField>rok1</DataField>
24          <rd:TypeName>System.Int32</rd:TypeName>
25        </Field>
26        <Field Name="kk">
27          <DataField>kk</DataField>
28          <rd:TypeName>System.Int32</rd:TypeName>
29        </Field>
30        <Field Name="kr">
31          <DataField>kr</DataField>
32          <rd:TypeName>System.Int32</rd:TypeName>
33        </Field>
34      </Fields>
35      <Query>
36        <DataSourceName>BAZA_REKLAM</DataSourceName>
37        <CommandText>select rok1, kk, kr  from
38(select year(data) as rok1, count(distinct customerId) as kk from dbo.KONTAKTY
39where year(data) &gt;=2005 group by year(data) )  t1
40left join
41(select year([FAKTURA DATA WYSTAWIENIA]) as rok2, count(distinct customerId) as kr
42from dbo.reklama
43where year([FAKTURA DATA WYSTAWIENIA]) &gt;= 2005
44AND TYP ='PŁATNA'
45group by year([FAKTURA DATA WYSTAWIENIA]),typ )  t2
46 on t1.rok1 = t2.rok2 order by rok1 desc</CommandText>
47        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
48      </Query>
49    </DataSet>
50    <DataSet Name="Kontakty2">
51      <Fields>
52        <Field Name="rok">
53          <DataField>rok</DataField>
54          <rd:TypeName>System.Int32</rd:TypeName>
55        </Field>
56        <Field Name="liczba">
57          <DataField>liczba</DataField>
58          <rd:TypeName>System.Int32</rd:TypeName>
59        </Field>
60        <Field Name="liczba_klientow">
61          <DataField>liczba_klientow</DataField>
62          <rd:TypeName>System.Int32</rd:TypeName>
63        </Field>
64        <Field Name="liczba_kontaktow">
65          <DataField>liczba_kontaktow</DataField>
66          <rd:TypeName>System.Int32</rd:TypeName>
67        </Field>
68      </Fields>
69      <Query>
70        <DataSourceName>BAZA_REKLAM</DataSourceName>
71        <CommandText>select rok, liczba, count(customerId) as liczba_klientow, sum(liczba_kontaktow) as liczba_kontaktow from
72(
73select customerId, rok, sum(liczba) as liczba, liczba_kontaktow from (
74select distinct customerId, tytuł, year([FAKTURA DATA WYSTAWIENIA])as rok,5 as liczba  from reklama
75where (tytuł='adMot') and year([FAKTURA DATA WYSTAWIENIA])&gt;=2005
76union
77select distinct customerId, tytuł, year([FAKTURA DATA WYSTAWIENIA]) as rok,3 as liczba  from reklama
78where (tytuł='GS') and year([FAKTURA DATA WYSTAWIENIA])&gt;=2005
79union
80select distinct customerId, tytuł, year([FAKTURA DATA WYSTAWIENIA]) as rok,1 as liczba from reklama
81where (tytuł='AMT') and year([FAKTURA DATA WYSTAWIENIA])&gt;=2005
82) t1 left join
83 (select count(*) as liczba_kontaktow, customerId as custId, year(data) as rok1  from dbo.KONTAKTY
84where year(data) &gt;=2005 group by customerId, year(data) ) t2
85on t1.customerId = t2.custId and t1.rok = t2.rok1
86 group by rok, customerId, liczba_kontaktow 
87) t3
88group by rok, liczba order by rok desc, liczba</CommandText>
89        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
90      </Query>
91    </DataSet>
92    <DataSet Name="Kontakty3">
93      <Fields>
94        <Field Name="d1">
95          <DataField>d1</DataField>
96          <rd:TypeName>System.Int32</rd:TypeName>
97        </Field>
98        <Field Name="c1">
99          <DataField>c1</DataField>
100          <rd:TypeName>System.Int32</rd:TypeName>
101        </Field>
102        <Field Name="c2">
103          <DataField>c2</DataField>
104          <rd:TypeName>System.Int32</rd:TypeName>
105        </Field>
106        <Field Name="c3">
107          <DataField>c3</DataField>
108          <rd:TypeName>System.Int32</rd:TypeName>
109        </Field>
110      </Fields>
111      <Query>
112        <DataSourceName>BAZA_REKLAM</DataSourceName>
113        <CommandText>select d1,c1,c2,c3 from (
114(select count( distinct customerID) as c1, year(data) as d1  from dbo.KONTAKTY where  opis like '%G*%' group by year(data)) t1
115left join
116(select count( distinct customerID) as c2, year(data) as d2 from dbo.KONTAKTY where  opis like '%T*%' group by year(data)) t2
117on t1.d1=t2.d2
118left join
119(select count( distinct customerID) as c3, year(data) as d3 from dbo.KONTAKTY group by year(data)) t3
120on t2.d2=t3.d3 )
121order by d1 desc</CommandText>
122        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
123      </Query>
124    </DataSet>
125  </DataSets>
126  <Width>16.5cm</Width>
127  <Body>
128    <ColumnSpacing>1cm</ColumnSpacing>
129    <ReportItems>
130      <Chart Name="chart2">
131        <Legend>
132          <Visible>true</Visible>
133          <Style>
134            <BorderStyle>
135              <Default>Solid</Default>
136            </BorderStyle>
137          </Style>
138          <Position>BottomCenter</Position>
139        </Legend>
140        <CategoryAxis>
141          <Axis>
142            <Title />
143            <MajorGridLines>
144              <Style>
145                <BorderStyle>
146                  <Default>Solid</Default>
147                </BorderStyle>
148              </Style>
149            </MajorGridLines>
150            <MinorGridLines>
151              <Style>
152                <BorderStyle>
153                  <Default>Solid</Default>
154                </BorderStyle>
155              </Style>
156            </MinorGridLines>
157            <MajorTickMarks>Inside</MajorTickMarks>
158            <Min>0</Min>
159            <Visible>true</Visible>
160          </Axis>
161        </CategoryAxis>
162        <ZIndex>2</ZIndex>
163        <DataSetName>Kontakty3</DataSetName>
164        <PlotArea>
165          <Style>
166            <BackgroundColor>LightGrey</BackgroundColor>
167            <BorderStyle>
168              <Default>Solid</Default>
169            </BorderStyle>
170          </Style>
171        </PlotArea>
172        <ThreeDProperties>
173          <Enabled>true</Enabled>
174          <Shading>Real</Shading>
175          <DrawingStyle>Cylinder</DrawingStyle>
176        </ThreeDProperties>
177        <PointWidth>0</PointWidth>
178        <SeriesGroupings>
179          <SeriesGrouping>
180            <StaticSeries>
181              <StaticMember>
182                <Label>liczba klientów z którymi był kontakt w sprawie reklamy w GS</Label>
183              </StaticMember>
184              <StaticMember>
185                <Label>liczba klientów z którymi był kontakt w sprawie reklamy w AMT</Label>
186              </StaticMember>
187              <StaticMember>
188                <Label>liczba klientów z którymi był kontakt w sprawie reklamy (wszystkie)</Label>
189              </StaticMember>
190            </StaticSeries>
191          </SeriesGrouping>
192        </SeriesGroupings>
193        <Top>11.25cm</Top>
194        <Subtype>Plain</Subtype>
195        <ValueAxis>
196          <Axis>
197            <Title />
198            <MajorGridLines>
199              <Style>
200                <BorderStyle>
201                  <Default>Solid</Default>
202                </BorderStyle>
203              </Style>
204            </MajorGridLines>
205            <MinorGridLines>
206              <Style>
207                <BorderStyle>
208                  <Default>Solid</Default>
209                </BorderStyle>
210              </Style>
211            </MinorGridLines>
212            <MajorTickMarks>Inside</MajorTickMarks>
213            <Min>0</Min>
214            <Margin>true</Margin>
215            <Visible>true</Visible>
216            <Scalar>true</Scalar>
217          </Axis>
218        </ValueAxis>
219        <Type>Column</Type>
220        <Width>16.25cm</Width>
221        <CategoryGroupings>
222          <CategoryGrouping>
223            <DynamicCategories>
224              <Grouping Name="chart2_CategoryGroup1">
225                <GroupExpressions>
226                  <GroupExpression>=Fields!d1.Value</GroupExpression>
227                </GroupExpressions>
228              </Grouping>
229              <Label />
230            </DynamicCategories>
231          </CategoryGrouping>
232        </CategoryGroupings>
233        <Palette>Pastel</Palette>
234        <ChartData>
235          <ChartSeries>
236            <DataPoints>
237              <DataPoint>
238                <DataValues>
239                  <DataValue>
240                    <Value>=Fields!c1.Value</Value>
241                  </DataValue>
242                </DataValues>
243                <DataLabel>
244                  <Value>=Fields!c1.Value</Value>
245                  <Visible>true</Visible>
246                </DataLabel>
247                <Marker>
248                  <Size>6pt</Size>
249                </Marker>
250              </DataPoint>
251            </DataPoints>
252          </ChartSeries>
253          <ChartSeries>
254            <DataPoints>
255              <DataPoint>
256                <DataValues>
257                  <DataValue>
258                    <Value>=Fields!c2.Value</Value>
259                  </DataValue>
260                </DataValues>
261                <DataLabel>
262                  <Value>=Fields!c2.Value</Value>
263                  <Visible>true</Visible>
264                </DataLabel>
265                <Marker>
266                  <Size>6pt</Size>
267                </Marker>
268              </DataPoint>
269            </DataPoints>
270          </ChartSeries>
271          <ChartSeries>
272            <DataPoints>
273              <DataPoint>
274                <DataValues>
275                  <DataValue>
276                    <Value>=Fields!c3.Value</Value>
277                  </DataValue>
278                </DataValues>
279                <DataLabel>
280                  <Value>=Fields!c3.Value</Value>
281                  <Visible>true</Visible>
282                </DataLabel>
283                <Marker>
284                  <Size>6pt</Size>
285                </Marker>
286              </DataPoint>
287            </DataPoints>
288          </ChartSeries>
289        </ChartData>
290        <Style>
291          <BackgroundColor>White</BackgroundColor>
292        </Style>
293        <Title>
294          <Caption>Analiza klientów 2</Caption>
295        </Title>
296        <Height>11.25cm</Height>
297      </Chart>
298      <List Name="list1">
299        <ZIndex>1</ZIndex>
300        <DataSetName>Kontakty2</DataSetName>
301        <ReportItems>
302          <Textbox Name="rok">
303            <rd:DefaultName>rok</rd:DefaultName>
304            <Width>15cm</Width>
305            <Style>
306              <FontWeight>700</FontWeight>
307              <TextAlign>Center</TextAlign>
308              <PaddingLeft>2pt</PaddingLeft>
309              <PaddingRight>2pt</PaddingRight>
310              <PaddingTop>2pt</PaddingTop>
311              <PaddingBottom>2pt</PaddingBottom>
312            </Style>
313            <ZIndex>1</ZIndex>
314            <CanGrow>true</CanGrow>
315            <Left>0.5cm</Left>
316            <Height>0.63492cm</Height>
317            <Value>=Fields!rok.Value</Value>
318          </Textbox>
319          <Table Name="table1">
320            <DataSetName>Kontakty2</DataSetName>
321            <Top>0.75cm</Top>
322            <Width>15.08334cm</Width>
323            <Details>
324              <TableRows>
325                <TableRow>
326                  <TableCells>
327                    <TableCell>
328                      <ReportItems>
329                        <Textbox Name="liczba">
330                          <rd:DefaultName>liczba</rd:DefaultName>
331                          <Style>
332                            <BorderColor>
333                              <Default>LightGrey</Default>
334                            </BorderColor>
335                            <BorderStyle>
336                              <Default>Solid</Default>
337                            </BorderStyle>
338                            <BorderWidth>
339                              <Default>0.5pt</Default>
340                            </BorderWidth>
341                            <TextAlign>Center</TextAlign>
342                            <PaddingLeft>2pt</PaddingLeft>
343                            <PaddingRight>2pt</PaddingRight>
344                            <PaddingTop>2pt</PaddingTop>
345                            <PaddingBottom>2pt</PaddingBottom>
346                          </Style>
347                          <ZIndex>2</ZIndex>
348                          <CanGrow>true</CanGrow>
349                          <Value>=switch(Fields!liczba.Value = 1,"AMT", Fields!liczba.Value = 3,"GS", Fields!liczba.Value = 5,"adMoto",Fields!liczba.Value = 4,"AMT i GS", Fields!liczba.Value = 6,"AMT i adMoto",Fields!liczba.Value =8,"GS i adMoto", Fields!liczba.Value = 9,"AMT, GS, adMoto")</Value>
350                        </Textbox>
351                      </ReportItems>
352                    </TableCell>
353                    <TableCell>
354                      <ReportItems>
355                        <Textbox Name="liczba_klientow">
356                          <rd:DefaultName>liczba_klientow</rd:DefaultName>
357                          <Style>
358                            <BorderColor>
359                              <Default>LightGrey</Default>
360                            </BorderColor>
361                            <BorderStyle>
362                              <Default>Solid</Default>
363                            </BorderStyle>
364                            <BorderWidth>
365                              <Default>0.5pt</Default>
366                            </BorderWidth>
367                            <TextAlign>Center</TextAlign>
368                            <PaddingLeft>2pt</PaddingLeft>
369                            <PaddingRight>2pt</PaddingRight>
370                            <PaddingTop>2pt</PaddingTop>
371                            <PaddingBottom>2pt</PaddingBottom>
372                          </Style>
373                          <ZIndex>1</ZIndex>
374                          <CanGrow>true</CanGrow>
375                          <Value>=Fields!liczba_klientow.Value</Value>
376                        </Textbox>
377                      </ReportItems>
378                    </TableCell>
379                    <TableCell>
380                      <ReportItems>
381                        <Textbox Name="liczba_kontaktow">
382                          <rd:DefaultName>liczba_kontaktow</rd:DefaultName>
383                          <Style>
384                            <BorderColor>
385                              <Default>LightGrey</Default>
386                            </BorderColor>
387                            <BorderStyle>
388                              <Default>Solid</Default>
389                            </BorderStyle>
390                            <BorderWidth>
391                              <Default>0.5pt</Default>
392                            </BorderWidth>
393                            <TextAlign>Center</TextAlign>
394                            <PaddingLeft>2pt</PaddingLeft>
395                            <PaddingRight>2pt</PaddingRight>
396                            <PaddingTop>2pt</PaddingTop>
397                            <PaddingBottom>2pt</PaddingBottom>
398                          </Style>
399                          <CanGrow>true</CanGrow>
400                          <Value>=Fields!liczba_kontaktow.Value</Value>
401                        </Textbox>
402                      </ReportItems>
403                    </TableCell>
404                  </TableCells>
405                  <Height>0.63492cm</Height>
406                </TableRow>
407              </TableRows>
408            </Details>
409            <Header>
410              <TableRows>
411                <TableRow>
412                  <TableCells>
413                    <TableCell>
414                      <ReportItems>
415                        <Textbox Name="textbox2">
416                          <rd:DefaultName>textbox2</rd:DefaultName>
417                          <Style>
418                            <BackgroundColor>WhiteSmoke</BackgroundColor>
419                            <BorderColor>
420                              <Default>LightGrey</Default>
421                            </BorderColor>
422                            <BorderStyle>
423                              <Default>Solid</Default>
424                            </BorderStyle>
425                            <BorderWidth>
426                              <Default>0.5pt</Default>
427                            </BorderWidth>
428                            <FontWeight>700</FontWeight>
429                            <TextAlign>Center</TextAlign>
430                            <PaddingLeft>2pt</PaddingLeft>
431                            <PaddingRight>2pt</PaddingRight>
432                            <PaddingTop>2pt</PaddingTop>
433                            <PaddingBottom>2pt</PaddingBottom>
434                          </Style>
435                          <ZIndex>5</ZIndex>
436                          <CanGrow>true</CanGrow>
437                          <Value>Tytuł</Value>
438                        </Textbox>
439                      </ReportItems>
440                    </TableCell>
441                    <TableCell>
442                      <ReportItems>
443                        <Textbox Name="textbox3">
444                          <rd:DefaultName>textbox3</rd:DefaultName>
445                          <Style>
446                            <BackgroundColor>WhiteSmoke</BackgroundColor>
447                            <BorderColor>
448                              <Default>LightGrey</Default>
449                            </BorderColor>
450                            <BorderStyle>
451                              <Default>Solid</Default>
452                            </BorderStyle>
453                            <BorderWidth>
454                              <Default>0.5pt</Default>
455                            </BorderWidth>
456                            <FontWeight>700</FontWeight>
457                            <TextAlign>Center</TextAlign>
458                            <PaddingLeft>2pt</PaddingLeft>
459                            <PaddingRight>2pt</PaddingRight>
460                            <PaddingTop>2pt</PaddingTop>
461                            <PaddingBottom>2pt</PaddingBottom>
462                          </Style>
463                          <ZIndex>4</ZIndex>
464                          <CanGrow>true</CanGrow>
465                          <Value>Liczba klientów</Value>
466                        </Textbox>
467                      </ReportItems>
468                    </TableCell>
469                    <TableCell>
470                      <ReportItems>
471                        <Textbox Name="textbox4">
472                          <rd:DefaultName>textbox4</rd:DefaultName>
473                          <Style>
474                            <BackgroundColor>WhiteSmoke</BackgroundColor>
475                            <BorderColor>
476                              <Default>LightGrey</Default>
477                            </BorderColor>
478                            <BorderStyle>
479                              <Default>Solid</Default>
480                            </BorderStyle>
481                            <BorderWidth>
482                              <Default>0.5pt</Default>
483                            </BorderWidth>
484                            <FontWeight>700</FontWeight>
485                            <TextAlign>Center</TextAlign>
486                            <PaddingLeft>2pt</PaddingLeft>
487                            <PaddingRight>2pt</PaddingRight>
488                            <PaddingTop>2pt</PaddingTop>
489                            <PaddingBottom>2pt</PaddingBottom>
490                          </Style>
491                          <ZIndex>3</ZIndex>
492                          <CanGrow>true</CanGrow>
493                          <Value>Liczba kontaktów</Value>
494                        </Textbox>
495                      </ReportItems>
496                    </TableCell>
497                  </TableCells>
498                  <Height>0.63492cm</Height>
499                </TableRow>
500              </TableRows>
501            </Header>
502            <TableColumns>
503              <TableColumn>
504                <Width>4.25cm</Width>
505              </TableColumn>
506              <TableColumn>
507                <Width>5.41667cm</Width>
508              </TableColumn>
509              <TableColumn>
510                <Width>5.41667cm</Width>
511              </TableColumn>
512            </TableColumns>
513            <Height>1.26984cm</Height>
514            <Left>0.5cm</Left>
515          </Table>
516        </ReportItems>
517        <Top>22.75cm</Top>
518        <Width>16.25cm</Width>
519        <Grouping Name="list1_Details_Group">
520          <GroupExpressions>
521            <GroupExpression>=Fields!rok.Value</GroupExpression>
522          </GroupExpressions>
523        </Grouping>
524        <PageBreakAtStart>true</PageBreakAtStart>
525      </List>
526      <Chart Name="chart1">
527        <Legend>
528          <Visible>true</Visible>
529          <Style>
530            <BorderStyle>
531              <Default>Solid</Default>
532            </BorderStyle>
533          </Style>
534          <Position>BottomCenter</Position>
535        </Legend>
536        <CategoryAxis>
537          <Axis>
538            <Title />
539            <MajorGridLines>
540              <Style>
541                <BorderStyle>
542                  <Default>Solid</Default>
543                </BorderStyle>
544              </Style>
545            </MajorGridLines>
546            <MinorGridLines>
547              <Style>
548                <BorderStyle>
549                  <Default>Solid</Default>
550                </BorderStyle>
551              </Style>
552            </MinorGridLines>
553            <MajorTickMarks>Inside</MajorTickMarks>
554            <Min>0</Min>
555            <Visible>true</Visible>
556          </Axis>
557        </CategoryAxis>
558        <DataSetName>Kontakty</DataSetName>
559        <PlotArea>
560          <Style>
561            <BackgroundColor>LightGrey</BackgroundColor>
562            <BorderStyle>
563              <Default>Solid</Default>
564            </BorderStyle>
565          </Style>
566        </PlotArea>
567        <ThreeDProperties>
568          <Enabled>true</Enabled>
569          <Shading>Real</Shading>
570          <DrawingStyle>Cylinder</DrawingStyle>
571        </ThreeDProperties>
572        <PointWidth>0</PointWidth>
573        <SeriesGroupings>
574          <SeriesGrouping>
575            <StaticSeries>
576              <StaticMember>
577                <Label>liczba klientów, z którymi był kontakt w danym roku </Label>
578              </StaticMember>
579              <StaticMember>
580                <Label>liczba klientów, którzy kupili reklamę w danym roku</Label>
581              </StaticMember>
582            </StaticSeries>
583          </SeriesGrouping>
584        </SeriesGroupings>
585        <Subtype>Plain</Subtype>
586        <ValueAxis>
587          <Axis>
588            <Title />
589            <MajorGridLines>
590              <Style>
591                <BorderStyle>
592                  <Default>Solid</Default>
593                </BorderStyle>
594              </Style>
595            </MajorGridLines>
596            <MinorGridLines>
597              <Style>
598                <BorderStyle>
599                  <Default>Solid</Default>
600                </BorderStyle>
601              </Style>
602            </MinorGridLines>
603            <MajorTickMarks>Inside</MajorTickMarks>
604            <Min>0</Min>
605            <Margin>true</Margin>
606            <Visible>true</Visible>
607            <Scalar>true</Scalar>
608          </Axis>
609        </ValueAxis>
610        <Type>Column</Type>
611        <Width>16.25cm</Width>
612        <CategoryGroupings>
613          <CategoryGrouping>
614            <DynamicCategories>
615              <Grouping Name="chart1_CategoryGroup1">
616                <GroupExpressions>
617                  <GroupExpression>=Fields!rok1.Value</GroupExpression>
618                </GroupExpressions>
619              </Grouping>
620              <Label />
621            </DynamicCategories>
622          </CategoryGrouping>
623        </CategoryGroupings>
624        <Palette>Pastel</Palette>
625        <ChartData>
626          <ChartSeries>
627            <DataPoints>
628              <DataPoint>
629                <DataValues>
630                  <DataValue>
631                    <Value>=Fields!kk.Value</Value>
632                  </DataValue>
633                </DataValues>
634                <DataLabel>
635                  <Value>=Fields!kk.Value</Value>
636                  <Position>Top</Position>
637                  <Visible>true</Visible>
638                </DataLabel>
639                <Marker>
640                  <Size>6pt</Size>
641                </Marker>
642              </DataPoint>
643            </DataPoints>
644          </ChartSeries>
645          <ChartSeries>
646            <DataPoints>
647              <DataPoint>
648                <DataValues>
649                  <DataValue>
650                    <Value>=Fields!kr.Value</Value>
651                  </DataValue>
652                </DataValues>
653                <DataLabel>
654                  <Value>=Fields!kr.Value</Value>
655                  <Position>Top</Position>
656                  <Visible>true</Visible>
657                </DataLabel>
658                <Marker>
659                  <Size>6pt</Size>
660                </Marker>
661              </DataPoint>
662            </DataPoints>
663          </ChartSeries>
664        </ChartData>
665        <Style>
666          <BackgroundColor>White</BackgroundColor>
667        </Style>
668        <Title>
669          <Caption>Analiza klientów</Caption>
670        </Title>
671        <Height>11cm</Height>
672      </Chart>
673    </ReportItems>
674    <Height>25cm</Height>
675  </Body>
676  <Language>en-US</Language>
677  <TopMargin>2.5cm</TopMargin>
678  <PageHeight>29.7cm</PageHeight>
679</Report>
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.