You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have a simple wpf application with Cartesian chart , I am able to draw points . But not able to draw quadrilateral cartesian chart that can intersect both the coordinates both the axes. My codes are here.
Now , I am able to add Two coordinates by using below code.
lvc:CartesianChart.AxisY
<lvc:Axis MaxValue="40" MinValue="-40" IsMerged="False">
lvc:Axis.Separator
<lvc:Separator Step="8">
</lvc:Separator>
</lvc:Axis.Separator>
lvc:Axis.Sections
<lvc:AxisSection Value="0"
DataLabel="True"
StrokeThickness="1"
Stroke="Gray"
DisableAnimations="False"
/>
</lvc:Axis.Sections>
</lvc:Axis>
</lvc:CartesianChart.AxisY>
And now i am getting like below image.
Here i want the 0 , 8 , 16 , 24 ...should come in that intersection line . That is I want that Separator step="8" in side Axis Section. How can we do that ? Hope for help
Hi,
I have a simple wpf application with Cartesian chart , I am able to draw points . But not able to draw quadrilateral cartesian chart that can intersect both the coordinates both the axes. My codes are here.
<lvc:CartesianChart Series="{Binding SeriesCollection}" x:Name="carchart" Zoom="Xy"
LegendLocation="Bottom">
lvc:CartesianChart.AxisX
<lvc:Axis MaxValue="40"
MinValue="-40">
lvc:Axis.Separator
<lvc:Separator Step="8">
lvc:Separator.Stroke
</lvc:Separator.Stroke>
</lvc:Separator>
</lvc:Axis.Separator>
</lvc:Axis>
</lvc:CartesianChart.AxisX>
lvc:CartesianChart.AxisY
<lvc:Axis MaxValue="40" MinValue="-40">
lvc:Axis.Separator
<lvc:Separator Step="8">
lvc:Separator.Stroke
</lvc:Separator.Stroke>
</lvc:Separator>
</lvc:Axis.Separator>
</lvc:Axis>
</lvc:CartesianChart.AxisY>
</lvc:CartesianChart>
--------------------------------------- In Code behind
SeriesCollection = new SeriesCollection
{
new LineSeries
{
Its producing below results.
But , i want something like this.
Please help
The text was updated successfully, but these errors were encountered: