Some Pie Charts by default have labels on the items, and others do not. When using the COM input and the CHART output.


I guess my question is how do I get the second chart to not have labels?
Below is the code that generated both...
1
2
3
4
5
6
7 public void genImageIIS(string inputQuery, string type, string title, string size, string config)
8 {
9 string query = filter(inputQuery);
10 oChartOuputFormat.chartTitle = title;
11 oChartOuputFormat.chartType = type;
12 oChartOuputFormat.groupSize = size;
13 oChartOuputFormat.config = filter(config);
14 if (timeFormat != null)
15 oChartOuputFormat.timestampFormat = timeFormat;
16
17 oLogQuery.ExecuteBatch(query, oIISW3CInputFormat, oChartOuputFormat);
18 }
19
20
21
22
23 public void genImageCSV(string inputQuery, string type, string title, string size, string config)
24 {
25 string query = filter(inputQuery);
26 oChartOuputFormat.chartTitle = title;
27 oChartOuputFormat.chartType = type;
28 oChartOuputFormat.groupSize = size;
29 oChartOuputFormat.config = filter(config);
30 iCSVInputFormat.headerRow = true;
31 if (timeFormat != null)
32 oChartOuputFormat.timestampFormat = timeFormat;
33
34 oLogQuery.ExecuteBatch(query, iCSVInputFormat, oChartOuputFormat);
35 }