How to modify X-Axis of ChartingToolkit LineChart
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have trouble formatting the x axis of my graph accordingly. The x axis shows values from the type DateTime. I would like to control which information is displayed on the x axis. For example only Seconds and Milliseconds. In addition I would like to set an interval for the x axis, if there are too many values to display.
Here is my current state:
I am using the chartingToolkit with following reference, to display a LineChart with two lines:
xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"
The data input for the graph look like this:
public ObservableCollection<List<KeyValuePair<DateTime,int>>> ListOutputGraph { get; set; }
This observable collection contains a list for each of the lines to be displayed
Now I plot the graph via XAML like this:
<chartingToolkit:Chart Name="LineChart1" BorderThickness="0" VerticalAlignment="Top" Margin="0,-30,0,0" Height="382">
<!-- Line P -->
<chartingToolkit:LineSeries Name="P" Title="P Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [0]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Red" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: P" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
<!-- Line L -->
<chartingToolkit:LineSeries Name="L" Title="L Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [1]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Blue" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: L" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
</chartingToolkit:Chart>
The result currently looks like this:
c# wpf charts data-visualization
add a comment |
I have trouble formatting the x axis of my graph accordingly. The x axis shows values from the type DateTime. I would like to control which information is displayed on the x axis. For example only Seconds and Milliseconds. In addition I would like to set an interval for the x axis, if there are too many values to display.
Here is my current state:
I am using the chartingToolkit with following reference, to display a LineChart with two lines:
xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"
The data input for the graph look like this:
public ObservableCollection<List<KeyValuePair<DateTime,int>>> ListOutputGraph { get; set; }
This observable collection contains a list for each of the lines to be displayed
Now I plot the graph via XAML like this:
<chartingToolkit:Chart Name="LineChart1" BorderThickness="0" VerticalAlignment="Top" Margin="0,-30,0,0" Height="382">
<!-- Line P -->
<chartingToolkit:LineSeries Name="P" Title="P Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [0]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Red" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: P" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
<!-- Line L -->
<chartingToolkit:LineSeries Name="L" Title="L Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [1]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Blue" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: L" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
</chartingToolkit:Chart>
The result currently looks like this:
c# wpf charts data-visualization
Just to have an idea: what is the result you would like to obtain?
– Il Vic
Jan 3 at 12:00
@IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval
– Julian
Jan 3 at 12:34
add a comment |
I have trouble formatting the x axis of my graph accordingly. The x axis shows values from the type DateTime. I would like to control which information is displayed on the x axis. For example only Seconds and Milliseconds. In addition I would like to set an interval for the x axis, if there are too many values to display.
Here is my current state:
I am using the chartingToolkit with following reference, to display a LineChart with two lines:
xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"
The data input for the graph look like this:
public ObservableCollection<List<KeyValuePair<DateTime,int>>> ListOutputGraph { get; set; }
This observable collection contains a list for each of the lines to be displayed
Now I plot the graph via XAML like this:
<chartingToolkit:Chart Name="LineChart1" BorderThickness="0" VerticalAlignment="Top" Margin="0,-30,0,0" Height="382">
<!-- Line P -->
<chartingToolkit:LineSeries Name="P" Title="P Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [0]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Red" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: P" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
<!-- Line L -->
<chartingToolkit:LineSeries Name="L" Title="L Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [1]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Blue" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: L" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
</chartingToolkit:Chart>
The result currently looks like this:
c# wpf charts data-visualization
I have trouble formatting the x axis of my graph accordingly. The x axis shows values from the type DateTime. I would like to control which information is displayed on the x axis. For example only Seconds and Milliseconds. In addition I would like to set an interval for the x axis, if there are too many values to display.
Here is my current state:
I am using the chartingToolkit with following reference, to display a LineChart with two lines:
xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"
The data input for the graph look like this:
public ObservableCollection<List<KeyValuePair<DateTime,int>>> ListOutputGraph { get; set; }
This observable collection contains a list for each of the lines to be displayed
Now I plot the graph via XAML like this:
<chartingToolkit:Chart Name="LineChart1" BorderThickness="0" VerticalAlignment="Top" Margin="0,-30,0,0" Height="382">
<!-- Line P -->
<chartingToolkit:LineSeries Name="P" Title="P Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [0]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Red" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: P" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
<!-- Line L -->
<chartingToolkit:LineSeries Name="L" Title="L Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [1]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Blue" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: L" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
</chartingToolkit:Chart>
The result currently looks like this:
c# wpf charts data-visualization
c# wpf charts data-visualization
asked Jan 3 at 9:32
JulianJulian
678
678
Just to have an idea: what is the result you would like to obtain?
– Il Vic
Jan 3 at 12:00
@IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval
– Julian
Jan 3 at 12:34
add a comment |
Just to have an idea: what is the result you would like to obtain?
– Il Vic
Jan 3 at 12:00
@IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval
– Julian
Jan 3 at 12:34
Just to have an idea: what is the result you would like to obtain?
– Il Vic
Jan 3 at 12:00
Just to have an idea: what is the result you would like to obtain?
– Il Vic
Jan 3 at 12:00
@IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval
– Julian
Jan 3 at 12:34
@IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval
– Julian
Jan 3 at 12:34
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54019527%2fhow-to-modify-x-axis-of-chartingtoolkit-linechart%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54019527%2fhow-to-modify-x-axis-of-chartingtoolkit-linechart%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Just to have an idea: what is the result you would like to obtain?
– Il Vic
Jan 3 at 12:00
@IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval
– Julian
Jan 3 at 12:34