| View previous topic :: View next topic |
| Author |
Message |
 |
troy
Joined: 30 Mar 2010 Posts: 1 Location: Calgary, Alberta
|
Posted: Mon Apr 26, 2010 12:26 pm Post subject: Chart setup for drill across klips |
|
|
I have a klip that uses three different Tiles in a drill across where two of those tiles are drilldown tiles and are essentially children of the 'default' tile. I am trying to get set up these child tiles as a pie graph. In a klip with no drill across I can specify this as:
<setup>
<chart>
<type>pie</type>
<categorylabels>accounts</categorylabels>
<series>total_bud</series>
</chart>
However, when I have the styles separated and under the <content> node, I'm not sure how to set up the columns within the individual child tiles to display as a chart type (eg.pie).
Specifically, I would like to set up the 'accounts' column under the 'accounts_style' as a pie graph, as well I would like to set up the 'sub_area' column under the 'areas_style' as a pie graph and be able to drill down in both. This klip does run normally when I don't specify any <chart> information.
Here is my style information:
<content>
<default_style>
report {
type: item;
definition: all;
}
name {
label: "Choose a report";
itemcol: 1;
noterow: 1;
emphasis: strong;
wrap: false;
}
</default_style>
<accounts_style>
account {
type: item;
definition: all;
}
accounts {
label: "Accounts";
emphasis: strong;
type: enum;
itemcol: 1;
noterow: 1;
drilldown: 1;
}
sub_area {
label: "Sub Area";
emphasis: strong;
type: enum;
itemcol: 1;
noterow: 2;
drilldown: 2;
}
rank {
label: "Rank";
type: number;
width: 3;
itemcol: 2;
noterow: 3;
}
total_bud {
label: "Budget";
type: number;
itemcol: 3;
noterow: 4;
align: middle;
formula: sum;
}
</accounts_style>
<areas_style>
area {
type: item;
definition: all;
}
sub_area {
label: "Sub Area";
emphasis: strong;
type: enum;
itemcol: 1;
noterow: 1;
drilldown: 1;
}
accounts {
label: "Accounts";
emphasis: strong;
type: enum;
itemcol: 1;
noterow: 2;
drilldown: 2;
}
rank {
label: "Rank";
type: number;
width: 3;
itemcol: 2;
noterow: 3;
}
total_bud {
label: "Budget";
type: number;
itemcol: 3;
noterow: 4;
align: middle;
formula: sum;
}
</areas_style>
</content> |
|
| Back to top |
|
 |
jeremyh Klipfolio Staff

Joined: 26 Jun 2006 Posts: 829 Location: Ottawa, Canada
|
Posted: Mon May 17, 2010 8:09 am Post subject: |
|
|
Hi troy,
It isn't currently possible to mix full-frame chart tiles with regular tiles. The full-frame chart setting is specified for the entire Klip, so all or none of your tiles would have to be pie charts. We plan to make it possible to mix full-frame chart tiles with regular tiles in a future version of Klipfolio Dashboard. I don't have any estimate as to when this feature would get added, but keep an eye on the Release Notes for any news about the feature.
Jeremy |
|
| Back to top |
|
 |
|