Skip to content

Instantly share code, notes, and snippets.

Created June 30, 2017 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3a6808b08dd69de7500bf199ba1ad3e9 to your computer and use it in GitHub Desktop.
Save anonymous/3a6808b08dd69de7500bf199ba1ad3e9 to your computer and use it in GitHub Desktop.
<StackLayout>
<ScrollView orientation="horizontal">
<StackLayout class="summary-content">
<RadCartesianChart height="300" width="600" allowAnimation="true" seriesSelectionMode="none">
<CategoricalAxis tkCartesianHorizontalAxis labelSize="14" lineColor="#ccc"></CategoricalAxis>
<LinearAxis tkCartesianVerticalAxis hidden="true"></LinearAxis>
<BarSeries tkCartesianSeries seriesName="inbound"
[items]="categoricalSource" categoryProperty="Country"
showLabels="true"
valueProperty="Amount" selectionMode="none">
<PointLabelStyle tkBarLabelStyle fillColor="purple" textColor="white" textSize="15"></PointLabelStyle>
</BarSeries>
<Palette tkCartesianPalette seriesName="inbound">
<PaletteEntry tkCartesianPaletteEntry fillColor="#F4BB57" strokeColor="Transparent"></PaletteEntry>
</Palette>
</RadCartesianChart>
</StackLayout>
</ScrollView>
</StackLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment