Jump to content
Software FX Community

superqd

Members
  • Posts

    4
  • Joined

  • Last visited

superqd's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I want to display a stacked chart that has no axes, no legend, and no margin around the plot area. I got rid of the axes and legend easily enough, but cannot figure out how to get rid of the white space around the actual plot itself. I've attached a picture of what I mean. In the picture, you see a lot of white space around the area chart(s). I need a way to get rid of all that white space (expand the plot to fill the entire chart rectangle). Is that possible? Thanks, Quentin
  2. Just a little more info: I'm using version "7.0.2664.18481" of the ChartFX.WinForms.dll.
  3. I was having an issue with this in a larger project, so I created a empty one just to isolate the problem. I have an empty windows form on which I dropped a single chart. I made no property changes to the chart (via the properties window). In the form load event, I have the following code: private void Form1_Load(object sender, EventArgs e) { chart1.Gallery = Gallery.Bar; chart1.AllSeries.Stacked = Stacked.Normal; chart1.AxisX.LabelsFormat.Format = AxisFormat.Time; DataTable t = new DataTable(); t.Columns.Add("time", typeof(DateTime)); t.Columns.Add("yvalue1", typeof(long)); t.Columns.Add("yvalue2", typeof(long)); DataRow r1 = t.NewRow(); DataRow r2 = t.NewRow(); r1["time"] = DateTime.Now; r1["yvalue1"] = 10; r1["yvalue2"] = 25; r2["time"] = DateTime.Now.AddMinutes(-100); r2["yvalue1"] = 50; r2["yvalue2"] = 75; t.Rows.Add(r1); t.Rows.Add(r2); chart1.DataSourceSettings.Fields.Add(new FieldMap("time", FieldUsage.XValue)); chart1.DataSourceSettings.Fields.Add(new FieldMap("yvalue1", FieldUsage.Value)); chart1.DataSourceSettings.Fields.Add(new FieldMap("yvalue2", FieldUsage.Value)); chart1.DataSource = t; } When I run the app, I get the following screen: Notice there are NO datetime labels for the bar charts!!!!! For reference, here is the generated designer code: private void InitializeComponent() { this.chart1 = new ChartFX.WinForms.Chart(); ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit(); this.SuspendLayout(); // // chart1 // this.chart1.Location = new System.Drawing.Point(12, 12); this.chart1.Name = "chart1"; this.chart1.Size = new System.Drawing.Size(898, 618); this.chart1.TabIndex = 0; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(922, 642); this.Controls.Add(this.chart1); this.Name = "Form1"; this.Text = "Form1"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } Any ideas? ??????????? I am literally pulling my hair out over this. I've tried lots of different things, but to no avail (including just setting things in the properties dialog, etc, and setting various other properties programmatically).
×
×
  • Create New...