コード例 #1
0
ファイル: LineOne.cs プロジェクト: cccarey/dotnetxmlswfchart
 private xsc.LegendTransition SetLegendTransition()
 {
     xsc.LegendTransition setting = new xsc.LegendTransition();
     setting.Type = xsc.TransitionType.dissolve;
     setting.Delay = 0;
     setting.Duration = 0.5;
     return setting;
 }
コード例 #2
0
 private LegendTransition SetLegendTransition()
 {
     LegendTransition lt = new LegendTransition();
     lt.Type = TransitionType.dissolve;
     lt.Delay = 2;
     lt.Duration = 0.5;
     return lt;
 }
コード例 #3
0
 private xsc.LegendTransition SetLegendTransition()
 {
     xsc.LegendTransition lt = new xsc.LegendTransition();
     lt.Type = xsc.TransitionType.dissolve;
     lt.Delay = 0;
     lt.Duration = 1;
     return lt;
 }
コード例 #4
0
 private xsc.LegendTransition SetLegendTransition()
 {
     xsc.LegendTransition lt = new xsc.LegendTransition();
     lt.Type = xsc.TransitionType.slide_left;
     lt.Delay = 0;
     lt.Duration = 1;
     return lt;
 }