Click here to Skip to main content
15,917,455 members
Home / Discussions / WPF
   

WPF

 
QuestionNullReferenceException was throwm on 'Groupbox' Pin
AmbiguousName20-Jun-11 18:20
AmbiguousName20-Jun-11 18:20 
AnswerRe: NullReferenceException was throwm on 'Groupbox' Pin
SledgeHammer0121-Jun-11 6:26
SledgeHammer0121-Jun-11 6:26 
AnswerRe: NullReferenceException was throwm on 'Groupbox' Pin
Pete O'Hanlon21-Jun-11 6:30
mvePete O'Hanlon21-Jun-11 6:30 
QuestionCustom control derived from DataGrid Pin
Nitsan Selinger19-Jun-11 21:12
Nitsan Selinger19-Jun-11 21:12 
AnswerRe: Custom control derived from DataGrid Pin
BobJanova20-Jun-11 4:42
BobJanova20-Jun-11 4:42 
GeneralRe: Custom control derived from DataGrid Pin
Nitsan Selinger20-Jun-11 5:07
Nitsan Selinger20-Jun-11 5:07 
GeneralRe: Custom control derived from DataGrid Pin
Pete O'Hanlon20-Jun-11 5:08
mvePete O'Hanlon20-Jun-11 5:08 
GeneralRe: Custom control derived from DataGrid Pin
Nitsan Selinger20-Jun-11 19:45
Nitsan Selinger20-Jun-11 19:45 
GeneralRe: Custom control derived from DataGrid Pin
Pete O'Hanlon21-Jun-11 6:28
mvePete O'Hanlon21-Jun-11 6:28 
GeneralRe: Custom control derived from DataGrid Pin
Nitsan Selinger21-Jun-11 7:27
Nitsan Selinger21-Jun-11 7:27 
GeneralRe: Custom control derived from DataGrid Pin
Pete O'Hanlon21-Jun-11 7:40
mvePete O'Hanlon21-Jun-11 7:40 
GeneralRe: Custom control derived from DataGrid Pin
Nitsan Selinger21-Jun-11 19:41
Nitsan Selinger21-Jun-11 19:41 
GeneralRe: Custom control derived from DataGrid Pin
Pete O'Hanlon21-Jun-11 21:01
mvePete O'Hanlon21-Jun-11 21:01 
GeneralRe: Custom control derived from DataGrid Pin
Nicolai Schrade6-Jul-11 5:52
Nicolai Schrade6-Jul-11 5:52 
GeneralRe: Custom control derived from DataGrid Pin
BobJanova20-Jun-11 7:32
BobJanova20-Jun-11 7:32 
QuestionHow to Group Controls[solved] Pin
AmbiguousName19-Jun-11 20:08
AmbiguousName19-Jun-11 20:08 
AnswerRe: How to Group Controls Pin
rajesh123110319-Jun-11 20:22
rajesh123110319-Jun-11 20:22 
AnswerRe: How to Group Controls Pin
DSB-Sven19-Jun-11 22:42
DSB-Sven19-Jun-11 22:42 
QuestionWCF Service called twice.. Pin
NTheOne17-Jun-11 0:54
NTheOne17-Jun-11 0:54 
AnswerRe: try this Pin
Pete O'Hanlon15-Jun-11 23:39
mvePete O'Hanlon15-Jun-11 23:39 
AnswerRe: try this Pin
Abhinav S16-Jun-11 21:39
Abhinav S16-Jun-11 21:39 
AnswerRe: try this Pin
Ravi Sant20-Jun-11 1:26
Ravi Sant20-Jun-11 1:26 
Answer[SOLVED] charting silverlight problem [modified] Pin
Super Lloyd15-Jun-11 20:43
Super Lloyd15-Jun-11 20:43 
[EDIT] My bad, it was date against int, solved!


I have a scatter view with point and the axis are date against date (I know, weird, but work out quite well, i.e. very meaningful user experience).
At any rate I have trouble with the Y axis setup.
Here is my current XAML:

<chart:Chart TitleStyle="{StaticResource NoTitle}">

    <chart:Chart.Axes>
        <chart:DateTimeAxis
            Orientation="X"
            IntervalType="Months"
            AxisLabelStyle="{StaticResource maxis}"
            Minimum="2000/07/01"
            Maximum="2001/06/30"
            />
        <chart:DateTimeAxis
            Orientation="Y"
            IntervalType="Years"
            >
        </chart:DateTimeAxis>
    </chart:Chart.Axes>

    <chart:ScatterSeries
        Title="{Binding ScatterTitle, ElementName=root}"
        ItemsSource="{Binding GraphData, ElementName=root}"
        IndependentValuePath="Date"
        DependentValuePath="Value"
        DataPointStyle="{StaticResource spoint}"
    />

</chart:Chart>

This kind of work except... I have 2 Y-Axis! One of the left with just the year, as I'd like.
And one on the right with regularly spaces dates (not falling on year start), I don't want it! Anything as a Y value of "xxxx january 1"
how could I get rid of it?
why visit even there?!
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station....
_________________________________________________________
My programs never have bugs, they just develop random features.
modified on Thursday, June 16, 2011 9:00 PM

QuestionHowTo? Make controls overlay Pin
samhenn14-Jun-11 22:18
samhenn14-Jun-11 22:18 
AnswerRe: HowTo? Make controls overlay Pin
SledgeHammer0115-Jun-11 6:32
SledgeHammer0115-Jun-11 6:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.