Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
XChart
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Brady James Garvin
XChart
Commits
eaa3f092
Commit
eaa3f092
authored
11 years ago
by
Tim Molter
Browse files
Options
Downloads
Patches
Plain Diff
added a stand alone Swing demo
parent
56e85641
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xchart-demo/src/main/java/com/xeiam/xchart/standalone/SwingDemo.java
+62
-0
62 additions, 0 deletions
.../src/main/java/com/xeiam/xchart/standalone/SwingDemo.java
with
62 additions
and
0 deletions
xchart-demo/src/main/java/com/xeiam/xchart/standalone/SwingDemo.java
0 → 100644
+
62
−
0
View file @
eaa3f092
/**
* Copyright 2011 - 2014 Xeiam LLC.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com.xeiam.xchart.standalone
;
import
javax.swing.JFrame
;
import
javax.swing.JPanel
;
import
com.xeiam.xchart.XChartPanel
;
import
com.xeiam.xchart.demo.charts.area.AreaChart01
;
/**
* Class showing how to integrate a chart into a Swing JFrame
*
* @author timmolter
*/
public
class
SwingDemo
extends
JPanel
{
/**
* Create the GUI and show it. For thread safety, this method should be invoked from the event dispatch thread.
*/
private
static
void
createAndShowGUI
()
{
// Create and set up the window.
JFrame
frame
=
new
JFrame
(
"XChart Swing Demo"
);
frame
.
setDefaultCloseOperation
(
JFrame
.
EXIT_ON_CLOSE
);
// Add content to the window.
JPanel
chartPanel
=
new
XChartPanel
(
new
AreaChart01
().
getChart
());
frame
.
add
(
chartPanel
);
// Display the window.
frame
.
pack
();
frame
.
setVisible
(
true
);
}
public
static
void
main
(
String
[]
args
)
{
// Schedule a job for the event dispatch thread:
// creating and showing this application's GUI.
javax
.
swing
.
SwingUtilities
.
invokeLater
(
new
Runnable
()
{
@Override
public
void
run
()
{
createAndShowGUI
();
}
});
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment