<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://infovis-wiki.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=UE-InfoVis0607+0005416</id>
	<title>InfoVis:Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://infovis-wiki.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=UE-InfoVis0607+0005416"/>
	<link rel="alternate" type="text/html" href="https://infovis-wiki.net/wiki/Special:Contributions/UE-InfoVis0607_0005416"/>
	<updated>2026-04-21T16:36:20Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12367</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 3 - Prototype</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12367"/>
		<updated>2007-01-12T17:59:07Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: finally added the images correctly&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perspective Wall ==&lt;br /&gt;
=== Author ===&lt;br /&gt;
Matej Durco&lt;br /&gt;
&lt;br /&gt;
=== Project description ===&lt;br /&gt;
We set out to implement a specific type of [[Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display|bifocal display]] called &amp;quot;Perspective Wall&amp;quot; [MayKinlay et al., 1991] using the comprehensive prefuse toolkit. Prefuse provides extensive methods for visualising data. While its main focus is implementing graphs it is also possible to implement time-based visualisation methods.&lt;br /&gt;
&lt;br /&gt;
Our solution was originally meant to use a person&#039;s diary or, more specifically, records of other people the person met as its data source. The rows would represent individual people while the x-axis would represent time units as identified in the data. It should be possible to move backwards and forwards in time while at the same time zooming into a specific area of interest.&lt;br /&gt;
&lt;br /&gt;
The actual implementation used the provided &#039;&#039;GridLayout&#039;&#039; class for positioning the individual data points. Prefuse&#039;s &#039;&#039;GridLayout&#039;&#039; ensures that one specific person will always be positioned in the same row.&lt;br /&gt;
For the desired interaction prefuse&#039;s &#039;&#039;BifocalDistortion&#039;&#039; class was used (with distortion set only to horizontal direction). It handles expanding and compressing the displayed data interactively.&lt;br /&gt;
&lt;br /&gt;
First we tried to use &#039;&#039;LabelRenderer&#039;&#039; for the datapoints, but it turned out useless because with more data the labels were overlapping massively. Therefore we switched to &#039;&#039;ShapeRenderer&#039;&#039; - ie each datapoint is represented by a tiny square (or other shape) - and the desired information (which person is behind the datapoint) shows up as &#039;&#039;ToolTip&#039;&#039; on hover. The datapoints partly still overlap, but one can view the individual information.&lt;br /&gt;
&lt;br /&gt;
=== Screenshot ===&lt;br /&gt;
[[Image:PerspectiveWall.png]]&lt;br /&gt;
&lt;br /&gt;
=== Further Development ===&lt;br /&gt;
Existing solution is really very rudimentary. There would be a lot to do, to make it better:&lt;br /&gt;
&lt;br /&gt;
==== Labeling ====&lt;br /&gt;
[[Image:DailyView.png|thumb|right|250px|Schematic illustration of the GridLayout for the focus-view]]&lt;br /&gt;
&lt;br /&gt;
The solution with &#039;&#039;ToolTip&#039;&#039; is a rather unsatisfying as only information for one datapoint can be viewed at one time and even this access is rather slow (&#039;&#039;ToolTip&#039;&#039; does not appear immediately). A natural alternative is employing AxisLabels. There is even a class - &#039;&#039;AxisLabelLayout&#039;&#039; - which seems suited for this. It would have to be extended to:&lt;br /&gt;
* allow more rows on the x-Axis (day and year in separate rows)&lt;br /&gt;
* position the y-Axis on the edge of the focus-view of the &#039;&#039;BifocalDistortion&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Linking ====&lt;br /&gt;
Allow direct access to the place in the original text (provided the data is extracted eg from a diary).&lt;br /&gt;
This could be implemented as an external link and text displayed in a &#039;&#039;&#039;browser&#039;&#039;&#039; &#039;&#039;&#039;or&#039;&#039;&#039; there could be another &#039;&#039;&#039;viewport integrated&#039;&#039;&#039; in the Visualisation.&lt;br /&gt;
&lt;br /&gt;
==== Aggregation ====&lt;br /&gt;
At present only the basic data is displayed, ie every row is visualized as a datapoint. For larger datasets a feature to aggregate over time would be important. We propose an entity &#039;&#039;TimeUnit&#039;&#039; with its property &#039;&#039;aggregationInterval&#039;&#039; defined in &#039;&#039;&#039;number of days&#039;&#039;&#039; (ie a month is a &#039;&#039;TimeUnit&#039;&#039; with &#039;&#039;aggregationInterval=30&#039;&#039;). Datapoints would represent the number of occurrences pro TimeUnit and could be displayed as vertically scaled rectangle.&lt;br /&gt;
There are 2 ways to arrange the datapoints vertically:&lt;br /&gt;
* leaving them aligned in a grid where every person has its own line (picture)&lt;br /&gt;
* &#039;&#039;StackedChart&#039;&#039; - where the scaled rectangles are scaled atop of each other.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;StackedChart&#039;&#039; has the positive side-effect of also visualizing the overall amount of occurrences, but the drawback of difficult labeling. Individual persons would have to be encoded in different colors and the color-assignement put in a legend which means additional lookup.&lt;br /&gt;
&lt;br /&gt;
If we imagine the slice for one &#039;&#039;TimeUnit&#039;&#039; in the &#039;&#039;StackedChart&#039;&#039; very thin (think of integral calculus) we get actually  a &#039;&#039;ThemeRiver&#039;&#039; which better expresses the continuity and also allows for almost direct positioning of labels (in or around the chart if necessary linked to the appropriate color-area by an arrow) but would be even more difficult to implement.&lt;br /&gt;
&lt;br /&gt;
[[Image:AggrViewGridStack.png|frame|center|Schematic illustration of a GridLayout and a StackChartLayout for the context-view]]&lt;br /&gt;
&lt;br /&gt;
==== Multiple Views ====&lt;br /&gt;
Integrating all the previously mentioned propositions we propose as an &#039;&#039;&#039;optimal solution a multiple-view&#039;&#039;&#039; visualization with:&lt;br /&gt;
# &#039;&#039;StackedChart&#039;&#039; or &#039;&#039;ThemeRiver&#039;&#039; for the aggregated context-view&lt;br /&gt;
# &#039;&#039;GridLayout&#039;&#039; for the focus-view&lt;br /&gt;
# browser for the source-text&lt;br /&gt;
where 1. and 2. could be either arranged &lt;br /&gt;
* in a sophisticated form of the &#039;&#039;BifocalDistortion&#039;&#039;, which would provide &#039;&#039;&#039;different Layouts in context and focus&#039;&#039;&#039; or &lt;br /&gt;
* in &#039;&#039;&#039;independent viewports&#039;&#039;&#039; (which wouldn&#039;t make a PerspectiveWall anymore, but we are actually primarily not interested in PerspectiveWall, but in visualizing the data)&lt;br /&gt;
The focus-view would display one &#039;&#039;TimeUnit&#039;&#039; of the context-view by default (although this could be parametrized).&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
* [http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display Description of Bifocal Display in infovis-wiki]&lt;br /&gt;
*[Mackinlay et al., 1991] Mackinlay, J. D., Robertson, G. G., and Card, S. K.: The Perspective Wall: Detail and Context Smoothly Integrated. In Proceedings of ACM Conference on Human Factors in Computing Systems (CHI91), Information Visualization, pages 173–179, 1991. http://ieg.ifs.tuwien.ac.at/~aigner/teaching/infovis_ue/papers/p173-mackinlay_perspective_wall.pdf&lt;br /&gt;
*Prefuse Toolkit http://prefuse.org/&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:AggrViewGridStack.png&amp;diff=12366</id>
		<title>File:AggrViewGridStack.png</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:AggrViewGridStack.png&amp;diff=12366"/>
		<updated>2007-01-12T17:57:04Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: Schematic illustration of a GridLayout and a StackChartLayout with scaled datapoints employed in the aggregated context-view of the PerspectiveWall-Visualization&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Schematic illustration of a GridLayout and a StackChartLayout with scaled datapoints employed in the aggregated context-view of the PerspectiveWall-Visualization&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
just use it&lt;br /&gt;
== Source ==&lt;br /&gt;
handmade&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12365</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 3 - Prototype</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12365"/>
		<updated>2007-01-12T17:35:52Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: added internal link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perspective Wall ==&lt;br /&gt;
=== Author ===&lt;br /&gt;
Matej Durco &lt;br /&gt;
&lt;br /&gt;
=== Project description ===&lt;br /&gt;
We set out to implement a specific type of [[Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display|bifocal display]] called &amp;quot;Perspective Wall&amp;quot; [MayKinlay et al., 1991] using the comprehensive prefuse toolkit. Prefuse provides extensive methods for visualising data. While its main focus is implementing graphs it is also possible to implement time-based visualisation methods.&lt;br /&gt;
&lt;br /&gt;
Our solution was originally meant to use a person&#039;s diary or, more specifically, records of other people the person met as its data source. The rows would represent individual people while the x-axis would represent time units as identified in the data. It should be possible to move backwards and forwards in time while at the same time zooming into a specific area of interest.&lt;br /&gt;
&lt;br /&gt;
The actual implementation used the provided &#039;&#039;GridLayout&#039;&#039; class for positioning the individual data points. Prefuse&#039;s &#039;&#039;GridLayout&#039;&#039; ensures that one specific person will always be positioned in the same row.&lt;br /&gt;
For the desired interaction prefuse&#039;s &#039;&#039;BifocalDistortion&#039;&#039; class was used (with distortion set only to horizontal direction). It handles expanding and compressing the displayed data interactively.&lt;br /&gt;
&lt;br /&gt;
First we tried to use &#039;&#039;LabelRenderer&#039;&#039; for the datapoints, but it turned out useless because with more data the labels were overlapping massively. Therefore we switched to &#039;&#039;ShapeRenderer&#039;&#039; - ie each datapoint is represented by a tiny square (or other shape) - and the desired information (which person is behind the datapoint) shows up as &#039;&#039;ToolTip&#039;&#039; on hover. The datapoints partly still overlap, but one can view the individual information.&lt;br /&gt;
&lt;br /&gt;
=== Screenshot ===&lt;br /&gt;
[[Image:PerspectiveWall.png]]&lt;br /&gt;
&lt;br /&gt;
=== Further Development ===&lt;br /&gt;
Existing solution is really very rudimentary. There would be a lot to do, to make it better:&lt;br /&gt;
&lt;br /&gt;
==== Labeling ====&lt;br /&gt;
The solution with &#039;&#039;ToolTip&#039;&#039; is a rather unsatisfying as only information for one datapoint can be viewed at one time and even this access is rather slow (&#039;&#039;ToolTip&#039;&#039; does not appear immediately). A natural alternative is employing AxisLabels. There is even a class - &#039;&#039;AxisLabelLayout&#039;&#039; - which seems suited for this. It would have to be extended to:&lt;br /&gt;
* allow more rows on the x-Axis (day and year in separate rows)&lt;br /&gt;
* position the y-Axis on the edge of the focus-view of the &#039;&#039;BifocalDistortion&#039;&#039;&lt;br /&gt;
[[Image:DailyView.png|frame|right||Schematic illustration of the GridLayout for the focus-view of the Perspective Wall]]&lt;br /&gt;
&lt;br /&gt;
==== Linking ====&lt;br /&gt;
Allow direct access to the place in the original text (provided the data is extracted eg from a diary).&lt;br /&gt;
This could be implemented as an external link and text displayed in a &#039;&#039;&#039;browser&#039;&#039;&#039; &#039;&#039;&#039;or&#039;&#039;&#039; there could be another &#039;&#039;&#039;viewport integrated&#039;&#039;&#039; in the Visualisation.&lt;br /&gt;
&lt;br /&gt;
==== Aggregation ====&lt;br /&gt;
At present only the basic data is displayed, ie every row is visualized as a datapoint. For larger datasets a feature to aggregate over time would be important. We propose an entity &#039;&#039;TimeUnit&#039;&#039; with its property &#039;&#039;aggregationInterval&#039;&#039; defined in &#039;&#039;&#039;number of days&#039;&#039;&#039; (ie a month is a &#039;&#039;TimeUnit&#039;&#039; with &#039;&#039;aggregationInterval=30&#039;&#039;). Datapoints would represent the number of occurrences pro TimeUnit and could be displayed as vertically scaled rectangle.&lt;br /&gt;
There are 2 ways to arrange the datapoints vertically:&lt;br /&gt;
* leaving them aligned in a grid where every person has its own line (picture)&lt;br /&gt;
* &#039;&#039;StackedChart&#039;&#039; - where the scaled rectangles are scaled atop of each other.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;StackedChart&#039;&#039; has the positive side-effect of also visualizing the overall amount of occurrences, but the drawback of difficult labeling. Individual persons would have to be encoded in different colors and the color-assignement put in a legend which means additional lookup.&lt;br /&gt;
&lt;br /&gt;
If we imagine the slice for one &#039;&#039;TimeUnit&#039;&#039; in the &#039;&#039;StackedChart&#039;&#039; very thin (think of integral calculus) we get actually  a &#039;&#039;ThemeRiver&#039;&#039; which better expresses the continuity and also allows for almost direct positioning of labels (in or around the chart if necessary linked to the appropriate color-area by an arrow) but would be even more difficult to implement.&lt;br /&gt;
[[Image:AggrViewGrid_monochrom.png||Schematic illustration of the GridLayout for the context-view]]&lt;br /&gt;
[[Image:AggrViewStack_polychrom.png||Schematic illustration of the StackChartLayout for the context-view]]&lt;br /&gt;
&lt;br /&gt;
==== Multiple Views ====&lt;br /&gt;
Integrating all the previously mentioned propositions we propose as an &#039;&#039;&#039;optimal solution a multiple-view&#039;&#039;&#039; visualization with:&lt;br /&gt;
# &#039;&#039;StackedChart&#039;&#039; or &#039;&#039;ThemeRiver&#039;&#039; for the aggregated context-view&lt;br /&gt;
# &#039;&#039;GridLayout&#039;&#039; for the focus-view&lt;br /&gt;
# browser for the source-text&lt;br /&gt;
where 1. and 2. could be either arranged &lt;br /&gt;
* in a sophisticated form of the &#039;&#039;BifocalDistortion&#039;&#039;, which would provide &#039;&#039;&#039;different Layouts in context and focus&#039;&#039;&#039; or &lt;br /&gt;
* in &#039;&#039;&#039;independent viewports&#039;&#039;&#039; (which wouldn&#039;t make a PerspectiveWall anymore, but we are actually primarily not interested in PerspectiveWall, but in visualizing the data)&lt;br /&gt;
The focus-view would display one &#039;&#039;TimeUnit&#039;&#039; of the context-view by default (although this could be parametrized).&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
* [http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display Description of Bifocal Display in infovis-wiki]&lt;br /&gt;
*[Mackinlay et al., 1991] Mackinlay, J. D., Robertson, G. G., and Card, S. K.: The Perspective Wall: Detail and Context Smoothly Integrated. In Proceedings of ACM Conference on Human Factors in Computing Systems (CHI91), Information Visualization, pages 173–179, 1991. http://ieg.ifs.tuwien.ac.at/~aigner/teaching/infovis_ue/papers/p173-mackinlay_perspective_wall.pdf&lt;br /&gt;
*Prefuse Toolkit http://prefuse.org/&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12364</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 3 - Prototype</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12364"/>
		<updated>2007-01-12T17:35:08Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: added internal link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perspective Wall ==&lt;br /&gt;
=== Author ===&lt;br /&gt;
Matej Durco &lt;br /&gt;
&lt;br /&gt;
=== Project description ===&lt;br /&gt;
We set out to implement a specific type of [[Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display|bifocal display]] called &amp;quot;Perspective Wall&amp;quot; [MayKinlay et al., 1991] using the comprehensive prefuse toolkit. Prefuse provides extensive methods for visualising data. While its main focus is implementing graphs it is also possible to implement time-based visualisation methods.&lt;br /&gt;
&lt;br /&gt;
Our solution was originally meant to use a person&#039;s diary or, more specifically, records of other people the person met as its data source. The rows would represent individual people while the x-axis would represent time units as identified in the data. It should be possible to move backwards and forwards in time while at the same time zooming into a specific area of interest.&lt;br /&gt;
&lt;br /&gt;
The actual implementation used the provided &#039;&#039;GridLayout&#039;&#039; class for positioning the individual data points. Prefuse&#039;s &#039;&#039;GridLayout&#039;&#039; ensures that one specific person will always be positioned in the same row.&lt;br /&gt;
For the desired interaction prefuse&#039;s &#039;&#039;BifocalDistortion&#039;&#039; class was used (with distortion set only to horizontal direction). It handles expanding and compressing the displayed data interactively.&lt;br /&gt;
&lt;br /&gt;
First we tried to use &#039;&#039;LabelRenderer&#039;&#039; for the datapoints, but it turned out useless because with more data the labels were overlapping massively. Therefore we switched to &#039;&#039;ShapeRenderer&#039;&#039; - ie each datapoint is represented by a tiny square (or other shape) - and the desired information (which person is behind the datapoint) shows up as &#039;&#039;ToolTip&#039;&#039; on hover. The datapoints partly still overlap, but one can view the individual information.&lt;br /&gt;
&lt;br /&gt;
=== Screenshot ===&lt;br /&gt;
[[Image:PerspectiveWall.png]]&lt;br /&gt;
&lt;br /&gt;
=== Further Development ===&lt;br /&gt;
Existing solution is really very rudimentary. There would be a lot to do, to make it better:&lt;br /&gt;
&lt;br /&gt;
==== Labeling ====&lt;br /&gt;
The solution with &#039;&#039;ToolTip&#039;&#039; is a rather unsatisfying as only information for one datapoint can be viewed at one time and even this access is rather slow (&#039;&#039;ToolTip&#039;&#039; does not appear immediately). A natural alternative is employing AxisLabels. There is even a class - &#039;&#039;AxisLabelLayout&#039;&#039; - which seems suited for this. It would have to be extended to:&lt;br /&gt;
* allow more rows on the x-Axis (day and year in separate rows)&lt;br /&gt;
* position the y-Axis on the edge of the focus-view of the &#039;&#039;BifocalDistortion&#039;&#039;&lt;br /&gt;
[[Image:DailyView.png|frame|right||Schematic illustration of the GridLayout for the focus-view of the Perspective Wall]]&lt;br /&gt;
&lt;br /&gt;
==== Linking ====&lt;br /&gt;
Allow direct access to the place in the original text (provided the data is extracted eg from a diary).&lt;br /&gt;
This could be implemented as an external link and text displayed in a &#039;&#039;&#039;browser&#039;&#039;&#039; &#039;&#039;&#039;or&#039;&#039;&#039; there could be another &#039;&#039;&#039;viewport integrated&#039;&#039;&#039; in the Visualisation.&lt;br /&gt;
&lt;br /&gt;
==== Aggregation ====&lt;br /&gt;
At present only the basic data is displayed, ie every row is visualized as a datapoint. For larger datasets a feature to aggregate over time would be important. We propose an entity &#039;&#039;TimeUnit&#039;&#039; with its property &#039;&#039;aggregationInterval&#039;&#039; defined in &#039;&#039;&#039;number of days&#039;&#039;&#039; (ie a month is a &#039;&#039;TimeUnit&#039;&#039; with &#039;&#039;aggregationInterval=30&#039;&#039;). Datapoints would represent the number of occurrences pro TimeUnit and could be displayed as vertically scaled rectangle.&lt;br /&gt;
There are 2 ways to arrange the datapoints vertically:&lt;br /&gt;
* leaving them aligned in a grid where every person has its own line (picture)&lt;br /&gt;
* &#039;&#039;StackedChart&#039;&#039; - where the scaled rectangles are scaled atop of each other.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;StackedChart&#039;&#039; has the positive side-effect of also visualizing the overall amount of occurrences, but the drawback of difficult labeling. Individual persons would have to be encoded in different colors and the color-assignement put in a legend which means additional lookup.&lt;br /&gt;
&lt;br /&gt;
If we imagine the slice for one &#039;&#039;TimeUnit&#039;&#039; in the &#039;&#039;StackedChart&#039;&#039; very thin (think of integral calculus) we get actually  a &#039;&#039;ThemeRiver&#039;&#039; which better expresses the continuity and also allows for almost direct positioning of labels (in or around the chart if necessary linked to the appropriate color-area by an arrow) but would be even more difficult to implement.&lt;br /&gt;
[[Image:AggrViewGrid_monochrom.png||Schematic illustration of the GridLayout for the context-view]]&lt;br /&gt;
[[Image:AggrViewStack_polychrom.png||Schematic illustration of the StackChartLayout for the context-view]]&lt;br /&gt;
&lt;br /&gt;
==== Multiple Views ====&lt;br /&gt;
Integrating all the previously mentioned propositions we propose as an &#039;&#039;&#039;optimal solution a multiple-view&#039;&#039;&#039; visualization with:&lt;br /&gt;
# &#039;&#039;StackedChart&#039;&#039; or &#039;&#039;ThemeRiver&#039;&#039; for the aggregated context-view&lt;br /&gt;
# &#039;&#039;GridLayout&#039;&#039; for the focus-view&lt;br /&gt;
# browser for the source-text&lt;br /&gt;
where 1. and 2. could be either arranged &lt;br /&gt;
* in a sophisticated form of the &#039;&#039;BifocalDistortion&#039;&#039;, which would provide &#039;&#039;&#039;different Layouts in context and focus&#039;&#039;&#039; or &lt;br /&gt;
* in &#039;&#039;&#039;independent viewports&#039;&#039;&#039; (which wouldn&#039;t make a PerspectiveWall anymore, but we are actually primarily not interested in PerspectiveWall, but in visualizing the data)&lt;br /&gt;
The focus-view would display one &#039;&#039;TimeUnit&#039;&#039; of the context-view by default (although this could be parametrized).&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
* [http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display|Description of Bifocal Display in infovis-wiki]&lt;br /&gt;
*[Mackinlay et al., 1991] Mackinlay, J. D., Robertson, G. G., and Card, S. K.: The Perspective Wall: Detail and Context Smoothly Integrated. In Proceedings of ACM Conference on Human Factors in Computing Systems (CHI91), Information Visualization, pages 173–179, 1991. http://ieg.ifs.tuwien.ac.at/~aigner/teaching/infovis_ue/papers/p173-mackinlay_perspective_wall.pdf&lt;br /&gt;
*Prefuse Toolkit http://prefuse.org/&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12363</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 3 - Prototype</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12363"/>
		<updated>2007-01-12T17:34:48Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: added internal link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perspective Wall ==&lt;br /&gt;
=== Author ===&lt;br /&gt;
Matej Durco &lt;br /&gt;
&lt;br /&gt;
=== Project description ===&lt;br /&gt;
We set out to implement a specific type of [[Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display|bifocal display]] called &amp;quot;Perspective Wall&amp;quot; [MayKinlay et al., 1991] using the comprehensive prefuse toolkit. Prefuse provides extensive methods for visualising data. While its main focus is implementing graphs it is also possible to implement time-based visualisation methods.&lt;br /&gt;
&lt;br /&gt;
Our solution was originally meant to use a person&#039;s diary or, more specifically, records of other people the person met as its data source. The rows would represent individual people while the x-axis would represent time units as identified in the data. It should be possible to move backwards and forwards in time while at the same time zooming into a specific area of interest.&lt;br /&gt;
&lt;br /&gt;
The actual implementation used the provided &#039;&#039;GridLayout&#039;&#039; class for positioning the individual data points. Prefuse&#039;s &#039;&#039;GridLayout&#039;&#039; ensures that one specific person will always be positioned in the same row.&lt;br /&gt;
For the desired interaction prefuse&#039;s &#039;&#039;BifocalDistortion&#039;&#039; class was used (with distortion set only to horizontal direction). It handles expanding and compressing the displayed data interactively.&lt;br /&gt;
&lt;br /&gt;
First we tried to use &#039;&#039;LabelRenderer&#039;&#039; for the datapoints, but it turned out useless because with more data the labels were overlapping massively. Therefore we switched to &#039;&#039;ShapeRenderer&#039;&#039; - ie each datapoint is represented by a tiny square (or other shape) - and the desired information (which person is behind the datapoint) shows up as &#039;&#039;ToolTip&#039;&#039; on hover. The datapoints partly still overlap, but one can view the individual information.&lt;br /&gt;
&lt;br /&gt;
=== Screenshot ===&lt;br /&gt;
[[Image:PerspectiveWall.png]]&lt;br /&gt;
&lt;br /&gt;
=== Further Development ===&lt;br /&gt;
Existing solution is really very rudimentary. There would be a lot to do, to make it better:&lt;br /&gt;
&lt;br /&gt;
==== Labeling ====&lt;br /&gt;
The solution with &#039;&#039;ToolTip&#039;&#039; is a rather unsatisfying as only information for one datapoint can be viewed at one time and even this access is rather slow (&#039;&#039;ToolTip&#039;&#039; does not appear immediately). A natural alternative is employing AxisLabels. There is even a class - &#039;&#039;AxisLabelLayout&#039;&#039; - which seems suited for this. It would have to be extended to:&lt;br /&gt;
* allow more rows on the x-Axis (day and year in separate rows)&lt;br /&gt;
* position the y-Axis on the edge of the focus-view of the &#039;&#039;BifocalDistortion&#039;&#039;&lt;br /&gt;
[[Image:DailyView.png|frame|right||Schematic illustration of the GridLayout for the focus-view of the Perspective Wall]]&lt;br /&gt;
&lt;br /&gt;
==== Linking ====&lt;br /&gt;
Allow direct access to the place in the original text (provided the data is extracted eg from a diary).&lt;br /&gt;
This could be implemented as an external link and text displayed in a &#039;&#039;&#039;browser&#039;&#039;&#039; &#039;&#039;&#039;or&#039;&#039;&#039; there could be another &#039;&#039;&#039;viewport integrated&#039;&#039;&#039; in the Visualisation.&lt;br /&gt;
&lt;br /&gt;
==== Aggregation ====&lt;br /&gt;
At present only the basic data is displayed, ie every row is visualized as a datapoint. For larger datasets a feature to aggregate over time would be important. We propose an entity &#039;&#039;TimeUnit&#039;&#039; with its property &#039;&#039;aggregationInterval&#039;&#039; defined in &#039;&#039;&#039;number of days&#039;&#039;&#039; (ie a month is a &#039;&#039;TimeUnit&#039;&#039; with &#039;&#039;aggregationInterval=30&#039;&#039;). Datapoints would represent the number of occurrences pro TimeUnit and could be displayed as vertically scaled rectangle.&lt;br /&gt;
There are 2 ways to arrange the datapoints vertically:&lt;br /&gt;
* leaving them aligned in a grid where every person has its own line (picture)&lt;br /&gt;
* &#039;&#039;StackedChart&#039;&#039; - where the scaled rectangles are scaled atop of each other.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;StackedChart&#039;&#039; has the positive side-effect of also visualizing the overall amount of occurrences, but the drawback of difficult labeling. Individual persons would have to be encoded in different colors and the color-assignement put in a legend which means additional lookup.&lt;br /&gt;
&lt;br /&gt;
If we imagine the slice for one &#039;&#039;TimeUnit&#039;&#039; in the &#039;&#039;StackedChart&#039;&#039; very thin (think of integral calculus) we get actually  a &#039;&#039;ThemeRiver&#039;&#039; which better expresses the continuity and also allows for almost direct positioning of labels (in or around the chart if necessary linked to the appropriate color-area by an arrow) but would be even more difficult to implement.&lt;br /&gt;
[[Image:AggrViewGrid_monochrom.png||Schematic illustration of the GridLayout for the context-view]]&lt;br /&gt;
[[Image:AggrViewStack_polychrom.png||Schematic illustration of the StackChartLayout for the context-view]]&lt;br /&gt;
&lt;br /&gt;
==== Multiple Views ====&lt;br /&gt;
Integrating all the previously mentioned propositions we propose as an &#039;&#039;&#039;optimal solution a multiple-view&#039;&#039;&#039; visualization with:&lt;br /&gt;
# &#039;&#039;StackedChart&#039;&#039; or &#039;&#039;ThemeRiver&#039;&#039; for the aggregated context-view&lt;br /&gt;
# &#039;&#039;GridLayout&#039;&#039; for the focus-view&lt;br /&gt;
# browser for the source-text&lt;br /&gt;
where 1. and 2. could be either arranged &lt;br /&gt;
* in a sophisticated form of the &#039;&#039;BifocalDistortion&#039;&#039;, which would provide &#039;&#039;&#039;different Layouts in context and focus&#039;&#039;&#039; or &lt;br /&gt;
* in &#039;&#039;&#039;independent viewports&#039;&#039;&#039; (which wouldn&#039;t make a PerspectiveWall anymore, but we are actually primarily not interested in PerspectiveWall, but in visualizing the data)&lt;br /&gt;
The focus-view would display one &#039;&#039;TimeUnit&#039;&#039; of the context-view by default (although this could be parametrized).&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
* [[http://www.infovis-wiki.net/index.php/Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display||Description of Bifocal Display in infovis-wiki]]&lt;br /&gt;
*[Mackinlay et al., 1991] Mackinlay, J. D., Robertson, G. G., and Card, S. K.: The Perspective Wall: Detail and Context Smoothly Integrated. In Proceedings of ACM Conference on Human Factors in Computing Systems (CHI91), Information Visualization, pages 173–179, 1991. http://ieg.ifs.tuwien.ac.at/~aigner/teaching/infovis_ue/papers/p173-mackinlay_perspective_wall.pdf&lt;br /&gt;
*Prefuse Toolkit http://prefuse.org/&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12362</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 3 - Prototype</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12362"/>
		<updated>2007-01-12T17:32:39Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perspective Wall ==&lt;br /&gt;
=== Author ===&lt;br /&gt;
Matej Durco &lt;br /&gt;
&lt;br /&gt;
=== Project description ===&lt;br /&gt;
We set out to implement a specific type of [[Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display|bifocal display]] called &amp;quot;Perspective Wall&amp;quot; [MayKinlay et al., 1991] using the comprehensive prefuse toolkit. Prefuse provides extensive methods for visualising data. While its main focus is implementing graphs it is also possible to implement time-based visualisation methods.&lt;br /&gt;
&lt;br /&gt;
Our solution was originally meant to use a person&#039;s diary or, more specifically, records of other people the person met as its data source. The rows would represent individual people while the x-axis would represent time units as identified in the data. It should be possible to move backwards and forwards in time while at the same time zooming into a specific area of interest.&lt;br /&gt;
&lt;br /&gt;
The actual implementation used the provided &#039;&#039;GridLayout&#039;&#039; class for positioning the individual data points. Prefuse&#039;s &#039;&#039;GridLayout&#039;&#039; ensures that one specific person will always be positioned in the same row.&lt;br /&gt;
For the desired interaction prefuse&#039;s &#039;&#039;BifocalDistortion&#039;&#039; class was used (with distortion set only to horizontal direction). It handles expanding and compressing the displayed data interactively.&lt;br /&gt;
&lt;br /&gt;
First we tried to use &#039;&#039;LabelRenderer&#039;&#039; for the datapoints, but it turned out useless because with more data the labels were overlapping massively. Therefore we switched to &#039;&#039;ShapeRenderer&#039;&#039; - ie each datapoint is represented by a tiny square (or other shape) - and the desired information (which person is behind the datapoint) shows up as &#039;&#039;ToolTip&#039;&#039; on hover. The datapoints partly still overlap, but one can view the individual information.&lt;br /&gt;
&lt;br /&gt;
=== Screenshot ===&lt;br /&gt;
[[Image:PerspectiveWall.png]]&lt;br /&gt;
&lt;br /&gt;
=== Further Development ===&lt;br /&gt;
Existing solution is really very rudimentary. There would be a lot to do, to make it better:&lt;br /&gt;
&lt;br /&gt;
==== Labeling ====&lt;br /&gt;
The solution with &#039;&#039;ToolTip&#039;&#039; is a rather unsatisfying as only information for one datapoint can be viewed at one time and even this access is rather slow (&#039;&#039;ToolTip&#039;&#039; does not appear immediately). A natural alternative is employing AxisLabels. There is even a class - &#039;&#039;AxisLabelLayout&#039;&#039; - which seems suited for this. It would have to be extended to:&lt;br /&gt;
* allow more rows on the x-Axis (day and year in separate rows)&lt;br /&gt;
* position the y-Axis on the edge of the focus-view of the &#039;&#039;BifocalDistortion&#039;&#039;&lt;br /&gt;
[[Image:DailyView.png|frame|right||Schematic illustration of the GridLayout for the focus-view of the Perspective Wall]]&lt;br /&gt;
&lt;br /&gt;
==== Linking ====&lt;br /&gt;
Allow direct access to the place in the original text (provided the data is extracted eg from a diary).&lt;br /&gt;
This could be implemented as an external link and text displayed in a &#039;&#039;&#039;browser&#039;&#039;&#039; &#039;&#039;&#039;or&#039;&#039;&#039; there could be another &#039;&#039;&#039;viewport integrated&#039;&#039;&#039; in the Visualisation.&lt;br /&gt;
&lt;br /&gt;
==== Aggregation ====&lt;br /&gt;
At present only the basic data is displayed, ie every row is visualized as a datapoint. For larger datasets a feature to aggregate over time would be important. We propose an entity &#039;&#039;TimeUnit&#039;&#039; with its property &#039;&#039;aggregationInterval&#039;&#039; defined in &#039;&#039;&#039;number of days&#039;&#039;&#039; (ie a month is a &#039;&#039;TimeUnit&#039;&#039; with &#039;&#039;aggregationInterval=30&#039;&#039;). Datapoints would represent the number of occurrences pro TimeUnit and could be displayed as vertically scaled rectangle.&lt;br /&gt;
There are 2 ways to arrange the datapoints vertically:&lt;br /&gt;
* leaving them aligned in a grid where every person has its own line (picture)&lt;br /&gt;
* &#039;&#039;StackedChart&#039;&#039; - where the scaled rectangles are scaled atop of each other.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;StackedChart&#039;&#039; has the positive side-effect of also visualizing the overall amount of occurrences, but the drawback of difficult labeling. Individual persons would have to be encoded in different colors and the color-assignement put in a legend which means additional lookup.&lt;br /&gt;
&lt;br /&gt;
If we imagine the slice for one &#039;&#039;TimeUnit&#039;&#039; in the &#039;&#039;StackedChart&#039;&#039; very thin (think of integral calculus) we get actually  a &#039;&#039;ThemeRiver&#039;&#039; which better expresses the continuity and also allows for almost direct positioning of labels (in or around the chart if necessary linked to the appropriate color-area by an arrow) but would be even more difficult to implement.&lt;br /&gt;
[[Image:AggrViewGrid_monochrom.png||Schematic illustration of the GridLayout for the context-view]]&lt;br /&gt;
[[Image:AggrViewStack_polychrom.png||Schematic illustration of the StackChartLayout for the context-view]]&lt;br /&gt;
&lt;br /&gt;
==== Multiple Views ====&lt;br /&gt;
Integrating all the previously mentioned propositions we propose as an &#039;&#039;&#039;optimal solution a multiple-view&#039;&#039;&#039; visualization with:&lt;br /&gt;
# &#039;&#039;StackedChart&#039;&#039; or &#039;&#039;ThemeRiver&#039;&#039; for the aggregated context-view&lt;br /&gt;
# &#039;&#039;GridLayout&#039;&#039; for the focus-view&lt;br /&gt;
# browser for the source-text&lt;br /&gt;
where 1. and 2. could be either arranged &lt;br /&gt;
* in a sophisticated form of the &#039;&#039;BifocalDistortion&#039;&#039;, which would provide &#039;&#039;&#039;different Layouts in context and focus&#039;&#039;&#039; or &lt;br /&gt;
* in &#039;&#039;&#039;independent viewports&#039;&#039;&#039; (which wouldn&#039;t make a PerspectiveWall anymore, but we are actually primarily not interested in PerspectiveWall, but in visualizing the data)&lt;br /&gt;
The focus-view would display one &#039;&#039;TimeUnit&#039;&#039; of the context-view by default (although this could be parametrized).&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
*[Mackinlay et al., 1991] Mackinlay, J. D., Robertson, G. G., and Card, S. K.: The Perspective Wall: Detail and Context Smoothly Integrated. In Proceedings of ACM Conference on Human Factors in Computing Systems (CHI91), Information Visualization, pages 173–179, 1991. http://ieg.ifs.tuwien.ac.at/~aigner/teaching/infovis_ue/papers/p173-mackinlay_perspective_wall.pdf&lt;br /&gt;
*Prefuse Toolkit http://prefuse.org/&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:AggrViewStack_polychrom.png&amp;diff=12361</id>
		<title>File:AggrViewStack polychrom.png</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:AggrViewStack_polychrom.png&amp;diff=12361"/>
		<updated>2007-01-12T17:30:04Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: Schematic illustration of a StackChartLayout with scaled datapoints employed in the aggregated context-view of the PerspectiveWall-Visualization&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Schematic illustration of a StackChartLayout with scaled datapoints employed in the aggregated context-view of the PerspectiveWall-Visualization&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:AggrViewGrid_monochrom.png&amp;diff=12360</id>
		<title>File:AggrViewGrid monochrom.png</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:AggrViewGrid_monochrom.png&amp;diff=12360"/>
		<updated>2007-01-12T17:29:39Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: Schematic illustration of a GridLayout with scaled datapoints employed in the aggregated context-view of the PerspectiveWall-Visualization&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Schematic illustration of a GridLayout with scaled datapoints employed in the aggregated context-view of the PerspectiveWall-Visualization&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
just use it&lt;br /&gt;
== Source ==&lt;br /&gt;
handmade&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:DailyView.png&amp;diff=12359</id>
		<title>File:DailyView.png</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:DailyView.png&amp;diff=12359"/>
		<updated>2007-01-12T17:01:58Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: Schematic illustration of a GridLayout employed in the focus-view of the PerspectiveWall-Visualization&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Schematic illustration of a GridLayout employed in the focus-view of the PerspectiveWall-Visualization&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
just use it&lt;br /&gt;
== Source ==&lt;br /&gt;
handmade&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12358</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 3 - Prototype</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3_-_Prototype&amp;diff=12358"/>
		<updated>2007-01-12T16:47:06Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: previous post by me (forgot to login): Added section: Further Development&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perspective Wall ==&lt;br /&gt;
=== Author ===&lt;br /&gt;
Matej Durco &lt;br /&gt;
&lt;br /&gt;
=== Project description ===&lt;br /&gt;
We set out to implement a specific type of [[Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display|bifocal display]] called &amp;quot;Perspective Wall&amp;quot; [MayKinlay et al., 1991] using the comprehensive prefuse toolkit. Prefuse provides extensive methods for visualising data. While its main focus is implementing graphs it is also possible to implement time-based visualisation methods.&lt;br /&gt;
&lt;br /&gt;
Our solution was originally meant to use a person&#039;s diary or, more specifically, records of other people the person met as its data source. The rows would represent individual people while the x-axis would represent time units as identified in the data. It should be possible to move backwards and forwards in time while at the same time zooming into a specific area of interest.&lt;br /&gt;
&lt;br /&gt;
The actual implementation used the provided &#039;&#039;GridLayout&#039;&#039; class for positioning the individual data points. Prefuse&#039;s &#039;&#039;GridLayout&#039;&#039; ensures that one specific person will always be positioned in the same row.&lt;br /&gt;
For the desired interaction prefuse&#039;s &#039;&#039;BifocalDistortion&#039;&#039; class was used (with distortion set only to horizontal direction). It handles expanding and compressing the displayed data interactively.&lt;br /&gt;
&lt;br /&gt;
First we tried to use &#039;&#039;LabelRenderer&#039;&#039; for the datapoints, but it turned out useless because with more data the labels were overlapping massively. Therefore we switched to &#039;&#039;ShapeRenderer&#039;&#039; - ie each datapoint is represented by a tiny square (or other shape) - and the desired information (which person is behind the datapoint) shows up as &#039;&#039;ToolTip&#039;&#039; on hover. The datapoints partly still overlap, but one can view the individual information.&lt;br /&gt;
&lt;br /&gt;
=== Screenshot ===&lt;br /&gt;
[[Image:PerspectiveWall.png]]&lt;br /&gt;
&lt;br /&gt;
=== Further Development ===&lt;br /&gt;
Existing solution is really very rudimentary. There would be a lot to do, to make it better:&lt;br /&gt;
&lt;br /&gt;
==== Labeling ====&lt;br /&gt;
The solution with &#039;&#039;ToolTip&#039;&#039; is a rather unsatisfying as only information for one datapoint can be viewed at one time and even this access is rather slow (&#039;&#039;ToolTip&#039;&#039; does not appear immediately). A natural alternative is employing AxisLabels. There is even a class - &#039;&#039;AxisLabelLayout&#039;&#039; - which seems suited for this. It would have to be extended to:&lt;br /&gt;
* allow more rows on the x-Axis (day and year in separate rows)&lt;br /&gt;
* position the y-Axis on the edge of the focus-view of the &#039;&#039;BifocalDistortion&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==== Linking ====&lt;br /&gt;
Allow direct access to the place in the original text (provided the data is extracted eg from a diary).&lt;br /&gt;
This could be implemented as an external link and text displayed in a &#039;&#039;&#039;browser&#039;&#039;&#039; &#039;&#039;&#039;or&#039;&#039;&#039; there could be another &#039;&#039;&#039;viewport integrated&#039;&#039;&#039; in the Visualisation.&lt;br /&gt;
&lt;br /&gt;
==== Aggregation ====&lt;br /&gt;
At present only the basic data is displayed, ie every row is visualized as a datapoint. For larger datasets a feature to aggregate over time would be important. We propose an entity &#039;&#039;TimeUnit&#039;&#039; with its property &#039;&#039;aggregationInterval&#039;&#039; defined in &#039;&#039;&#039;number of days&#039;&#039;&#039; (ie a month is a &#039;&#039;TimeUnit&#039;&#039; with &#039;&#039;aggregationInterval=30&#039;&#039;). Datapoints would represent the number of occurrences pro TimeUnit and could be displayed as vertically scaled rectangle.&lt;br /&gt;
There are 2 ways to arrange the datapoints vertically:&lt;br /&gt;
* leaving them aligned in a grid where every person has its own line (picture)&lt;br /&gt;
* &#039;&#039;StackedChart&#039;&#039; - where the scaled rectangles are scaled atop of each other.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;StackedChart&#039;&#039; has the positive side-effect of also visualizing the overall amount of occurrences, but the drawback of difficult labeling. Individual persons would have to be encoded in different colors and the color-assignement put in a legend which means additional lookup.&lt;br /&gt;
&lt;br /&gt;
If we imagine the slice for one &#039;&#039;TimeUnit&#039;&#039; in the &#039;&#039;StackedChart&#039;&#039; very thin (think of integral calculus) we get actually  a &#039;&#039;ThemeRiver&#039;&#039; which better expresses the continuity and also allows for almost direct positioning of labels (in or around the chart if necessary linked to the appropriate color-area by an arrow) but would be even more difficult to implement.&lt;br /&gt;
&lt;br /&gt;
==== Multiple Views ====&lt;br /&gt;
Integrating all the previously mentioned propositions we propose as an &#039;&#039;&#039;optimal solution a multiple-view&#039;&#039;&#039; visualization with:&lt;br /&gt;
# &#039;&#039;StackedChart&#039;&#039; or &#039;&#039;ThemeRiver&#039;&#039; for the aggregated context-view&lt;br /&gt;
# &#039;&#039;GridLayout&#039;&#039; for the focus-view&lt;br /&gt;
# browser for the source-text&lt;br /&gt;
where 1. and 2. could be either arranged &lt;br /&gt;
* in a sophisticated form of the &#039;&#039;BifocalDistortion&#039;&#039;, which would provide &#039;&#039;&#039;different Layouts in context and focus&#039;&#039;&#039; or &lt;br /&gt;
* in &#039;&#039;&#039;independent viewports&#039;&#039;&#039; (which wouldn&#039;t make a PerspectiveWall anymore, but we are actually primarily not interested in PerspectiveWall, but in visualizing the data)&lt;br /&gt;
The focus-view would display one &#039;&#039;TimeUnit&#039;&#039; of the context-view by default (although this could be parametrized).&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
*[Mackinlay et al., 1991] Mackinlay, J. D., Robertson, G. G., and Card, S. K.: The Perspective Wall: Detail and Context Smoothly Integrated. In Proceedings of ACM Conference on Human Factors in Computing Systems (CHI91), Information Visualization, pages 173–179, 1991. http://ieg.ifs.tuwien.ac.at/~aigner/teaching/infovis_ue/papers/p173-mackinlay_perspective_wall.pdf&lt;br /&gt;
*Prefuse Toolkit http://prefuse.org/&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3&amp;diff=11983</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 3</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3&amp;diff=11983"/>
		<updated>2006-12-01T18:57:16Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: added image, highlighted important words&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Technique ==&lt;br /&gt;
We are interested in visualisation techniques that are especially well suited for data with an important time-dimension. Thus our choice would be Perspective Wall or Theme River.&lt;br /&gt;
We are not sure yet, which one is suited better, so we would like to regard both, as long as possible.&lt;br /&gt;
Perspective Wall is suited better for a detailed display of the data (with no aggregation),&lt;br /&gt;
whereas Theme River requires some kind of integration and would be better suited for an aggregated overview. Moreover the important elements of Perspective Wall (bifocal display with distortion on the off-center viewports) are better supported by prefuse.&lt;br /&gt;
[[Image:Perspective_wall_Inxight.jpg|frame|right||Sample illustration of the Perspective Wall visualisation technique]]&lt;br /&gt;
&lt;br /&gt;
=== Data ===&lt;br /&gt;
&#039;&#039;How can we describe the usage of a technique without defining the data we want to present?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
There are various data structures, for which this display technique could be suitable.&lt;br /&gt;
We want to focus on a &#039;&#039;&#039;Diary&#039;&#039;&#039;: Person(s) meeting other persons and being at places.&lt;br /&gt;
There are two types of Diary: one for &#039;&#039;&#039;planning&#039;&#039;&#039;, ie noting what one person is going to do,&lt;br /&gt;
the other one for &#039;&#039;&#039;protocolling&#039;&#039;&#039;, ie what the person already did.&lt;br /&gt;
&lt;br /&gt;
The data will most likely be available in tabular form with the three dimensions being &#039;&#039;&#039;people&#039;&#039;&#039;, &#039;&#039;&#039;time&#039;&#039;&#039; and &#039;&#039;&#039;place&#039;&#039;&#039;. Prefuse provides extensive data input capabilities for tabular data that can be used.&lt;br /&gt;
&lt;br /&gt;
=== Visual Mapping ===&lt;br /&gt;
Basic dimension is time. It is mapped to the horizontal axis. The selected/viewed &#039;&#039;&#039;time-slice&#039;&#039;&#039; is presented in the primary focus. The primary granularity of the &#039;&#039;time-slice&#039;&#039; is planned to be one month, but other levels of granularity would make sense as well.&lt;br /&gt;
&lt;br /&gt;
Other dimensions are places and people.&lt;br /&gt;
As long as one person is examined, the ribbon could be sliced vertically, &lt;br /&gt;
according to places, where the person is, as one person can be only on one place at one time.&lt;br /&gt;
&lt;br /&gt;
Other persons, ie persons the examined person meets or mentions, should be displayed in separate, parallel horizontal slices (in Perspective Wall).&lt;br /&gt;
This makes the gist of the data (&#039;&#039;&#039;who met where when?&#039;&#039;&#039;) visible at one glance.&lt;br /&gt;
&lt;br /&gt;
=== Interaction ===&lt;br /&gt;
* Scrolling the time axis (back and forth)&lt;br /&gt;
* Navigation to special time-slice&lt;br /&gt;
* Optionally zooming the time axis (from whole regarded data set to one day; this partly overlaps with the setting of the granularity of the time-slice, ie size of the main focus)&lt;br /&gt;
* Query on places and persons visualized either as restriction (filtering) or through highlighting.&lt;br /&gt;
&lt;br /&gt;
== Prototype ==&lt;br /&gt;
&#039;&#039;Mockup of possible Perspective Wall design to come&#039;&#039;&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Perspective_wall_Inxight.jpg&amp;diff=11982</id>
		<title>File:Perspective wall Inxight.jpg</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Perspective_wall_Inxight.jpg&amp;diff=11982"/>
		<updated>2006-12-01T18:48:27Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: Sample depicting the bifocal visualisation technique &amp;quot;perspective wall&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Sample depicting the bifocal visualisation technique &amp;quot;perspective wall&amp;quot;&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
http://ieg.ifs.tuwien.ac.at/~aigner/teaching/ws06/infovis_ue/infovis_ue_aufgabe3-techniken.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=User:UE-InfoVis0607_0005416&amp;diff=11981</id>
		<title>User:UE-InfoVis0607 0005416</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=User:UE-InfoVis0607_0005416&amp;diff=11981"/>
		<updated>2006-12-01T18:46:34Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Matej Durco, 0005416, 534, xnrn at gmx dot net&amp;lt;br/&amp;gt;&lt;br /&gt;
member of &lt;br /&gt;
[[Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08|Gruppe 08 (Durco)]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3&amp;diff=11815</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 3</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3&amp;diff=11815"/>
		<updated>2006-11-27T13:33:12Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Technique ==&lt;br /&gt;
We are interested in visualisation techniques that are especially well suited for data with an important time-dimension. Thus our choice would be Perspective Wall or Theme River.&lt;br /&gt;
We are not sure yet, which one is suited better, so we would like to regard both, as long as possible.&lt;br /&gt;
&#039;&#039;add Bilder and Quellen&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Data ===&lt;br /&gt;
&#039;&#039;How can we describe the usage of a technique without defining the data we want to present?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Tagebuch/Diary - person meeting people, being at places - in time.&lt;br /&gt;
&lt;br /&gt;
=== Visual Mapping ===&lt;br /&gt;
Basic dimension is time. It is mapped to the horizontal axis.&lt;br /&gt;
&lt;br /&gt;
Other dimensions are places and people.&lt;br /&gt;
As long as one person is examined, the ribbon could be sliced vertically, &lt;br /&gt;
according to places, where the person is, as one person can be only on one place at one time.&lt;br /&gt;
&lt;br /&gt;
Other persons, ie persons the examined person meets or mentions, should be displayed in separate, parallel horizontal slices (in Perspective Wall).&lt;br /&gt;
This makes the gist of the data (who met where when?) visible at one glance.&lt;br /&gt;
&lt;br /&gt;
=== Interaction ===&lt;br /&gt;
* Zooming the time axis (from whole regarded data set to one day)&lt;br /&gt;
* Navigation to special date (but also eg just year)&lt;br /&gt;
* Query on places and persons visualized either as restriction (filtering) or through highlighting.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039; Data Input - How will the data come in? &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Prototype ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3&amp;diff=11814</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 3</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_3&amp;diff=11814"/>
		<updated>2006-11-27T12:50:34Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Technique ==&lt;br /&gt;
We are interested in visualisation techniques that are especially well suited for data with an important time-dimension. Thus our choice would be Perspective Wall or Theme River.&lt;br /&gt;
We are not sure yet, which one is suited better, so we would like to regard both, as long as possible.&lt;br /&gt;
&#039;&#039;add Bilder and Quellen&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Data ===&lt;br /&gt;
&#039;&#039;How can we describe the usage of a technique without defining the data we want to present?&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Tagebuch/Diary - person meeting people, being at places - in time.&lt;br /&gt;
&lt;br /&gt;
=== Visual Mapping ===&lt;br /&gt;
Basic dimension is time. It is mapped to the horizontal axis.&lt;br /&gt;
Other dimensions are places and people.&lt;br /&gt;
&lt;br /&gt;
=== Interaction ===&lt;br /&gt;
* Zooming the time axis (from whole regarded data set to one day)&lt;br /&gt;
* Navigation to special date (but also eg just year)&lt;br /&gt;
* Query on places and persons visualized either as restriction (filtering) or through highlighting.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039; Data Input - How will the data come in? &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Prototype ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Aufgabe_3_-_Technikauswahl&amp;diff=11730</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Aufgabe 3 - Technikauswahl</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Aufgabe_3_-_Technikauswahl&amp;diff=11730"/>
		<updated>2006-11-23T18:59:56Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|-&lt;br /&gt;
|&#039;&#039;&#039;Gruppe:&amp;amp;nbsp;&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Gewählte Technik:&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|01&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|02&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|03&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|08&lt;br /&gt;
|3 Perspective Wall oder 6 ThemeRiver&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11626</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11626"/>
		<updated>2006-11-13T22:34:44Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Variation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* &#039;&#039;&#039;Chartjunk&#039;&#039;&#039;: The columns are filled with distracting gradients.&lt;br /&gt;
* &#039;&#039;&#039;Data-Ink ratio&#039;&#039;&#039;: Much of the graphic is filled with useless patterns. The actual (overly large) pie charts occupy only a fraction of the graphic.&lt;br /&gt;
* &#039;&#039;&#039;Data Density&#039;&#039;&#039;: One pie chart per year seems a bit excessive for the amount of information they provide.&lt;br /&gt;
* &#039;&#039;&#039;Friendly Data Graphic&#039;&#039;&#039;: This graphic relies heavily on colours, rendering it all but useless if converted to grayscale or viewed by colour-blind persons.&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* The pie charts are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* There are four graph labels in different fonts with redundant information.&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
[[Image:LineChart.png]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* The market share changes are visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* The data-ink ratio has been increased.&lt;br /&gt;
* The labels are clearly visible next to the lines.&lt;br /&gt;
* The difference between market shares is easy to determine. One can immediately see that Sotheby&#039;s is always ahead of Christie&#039;s by roughly the same margin.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png]]&lt;br /&gt;
&lt;br /&gt;
This alternative design is useful for gauging how much of the total market can be attributed to each of the two companies. This representation shows the entirety of this particular market instead of just part of it, thus keeping the idea of the original pie charts. The drawback is that it is more difficult to see that Sotheby&#039;s is ahead of Christie&#039;s every single year by roughly the same margin. Also it violates against the Data-Ink rule.&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11531</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11531"/>
		<updated>2006-11-13T15:01:09Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
[[Image:ColumnChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11530</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11530"/>
		<updated>2006-11-13T15:00:59Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
[[Image:ColumnChart.png|frame|right|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11529</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11529"/>
		<updated>2006-11-13T15:00:14Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11528</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11528"/>
		<updated>2006-11-13T14:59:52Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|none|thumb|400px||Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11527</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11527"/>
		<updated>2006-11-13T14:59:40Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|none||||Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11526</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11526"/>
		<updated>2006-11-13T14:59:36Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|none|||Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11525</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11525"/>
		<updated>2006-11-13T14:59:30Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|none||Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11524</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11524"/>
		<updated>2006-11-13T14:59:21Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|none|thumb||Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11523</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11523"/>
		<updated>2006-11-13T14:58:39Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|frame|left|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11522</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11522"/>
		<updated>2006-11-13T14:58:27Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|frame||Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|frame||Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11521</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11521"/>
		<updated>2006-11-13T14:57:43Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|none||Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|none||Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11520</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11520"/>
		<updated>2006-11-13T14:57:05Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|none|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11519</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11519"/>
		<updated>2006-11-13T14:56:30Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11518</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11518"/>
		<updated>2006-11-13T14:56:19Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.png|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.png|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11517</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11517"/>
		<updated>2006-11-13T14:55:56Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Improved Graphic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Criticism ===&lt;br /&gt;
* Gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;.&lt;br /&gt;
* Six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;.&lt;br /&gt;
* The individual pie charts are virtually indistinguishable, making pie charts a rather poor choice in this context.&lt;br /&gt;
* The pie charts are arranged diagonally without any meaning (except for the growing years).&lt;br /&gt;
* The position of the pie charts suggests an increase on the y-axis which doesn&#039;t have any function or labels.&lt;br /&gt;
* Four graph-labels in different font with redundant information.&lt;br /&gt;
* The labels are not anywhere near the pie charts and have to be found to derive any meaning from the charts.&lt;br /&gt;
&lt;br /&gt;
== Improved Graphic ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LineChart.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 1]]&lt;br /&gt;
&lt;br /&gt;
=== Improvements ===&lt;br /&gt;
* Market share changes are visible over the years.&lt;br /&gt;
* Removed confusing and unnecessary backgrounds.&lt;br /&gt;
* Increased data-ink ratio.&lt;br /&gt;
* Labels are clearly visible next to the lines.&lt;br /&gt;
* Difference between market shares easy to determine.&lt;br /&gt;
&lt;br /&gt;
=== Variation ===&lt;br /&gt;
[[Image:ColumnChart.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis - Improved Graphic - Variant 2]]&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:ColumnChart.png&amp;diff=11514</id>
		<title>File:ColumnChart.png</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:ColumnChart.png&amp;diff=11514"/>
		<updated>2006-11-13T14:50:53Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2 Improved Graphic, Variant 1 - Column Graph&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2 Improved Graphic, Variant 1 - Column Graph&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:LineChart.png&amp;diff=11512</id>
		<title>File:LineChart.png</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:LineChart.png&amp;diff=11512"/>
		<updated>2006-11-13T14:49:01Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2&lt;br /&gt;
Improved Graphic, Variant 1 - Column Graph&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:LineChart.png&amp;diff=11511</id>
		<title>File:LineChart.png</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:LineChart.png&amp;diff=11511"/>
		<updated>2006-11-13T14:48:50Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2
Improved Graphic, Variant 1 - Line Graph&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2&lt;br /&gt;
Improved Graphic, Variant 1 - Line Graph&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11501</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11501"/>
		<updated>2006-11-13T12:48:21Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Critique */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Critique ===&lt;br /&gt;
* gradient-fill of the year-columns - unnecessary &#039;&#039;Chartjunk&#039;&#039;&lt;br /&gt;
* six cakes for one data-row - very low &#039;&#039;Data Density&#039;&#039;&lt;br /&gt;
* the cakes do not visualize clearly the change over the years.&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;br /&gt;
* 4 graph-labels in different font with redundant information&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11447</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 2</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_2&amp;diff=11447"/>
		<updated>2006-11-12T20:48:30Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Poor Graphic  ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Friendly00sothebys.jpg|none|thumb|600px|none|Sotheby&#039;s / Christie&#039;s Worldwide Sales Market Share Analysis]]&lt;br /&gt;
&lt;br /&gt;
=== Critique ===&lt;br /&gt;
* cakes are arranged diagonally without any meaning (except for the growing years)&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11169</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 1 - Bifocal Display</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11169"/>
		<updated>2006-10-30T14:48:38Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Definition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
&#039;&#039;&#039;Bifocal display&#039;&#039;&#039; is a visualisation technique, whose goal is to represent the current region of interest in a detailed view, maintaining the context visible in a schematic but recognisable way.  [Apperley et al., 1982]&lt;br /&gt;
&lt;br /&gt;
== Context ==&lt;br /&gt;
The desire to present all the relevant information within its context usually results in an extremely cluttered and confusing display. If only the current region of interest is displayed, one has to arrange for a mechanism to quickly switch to relevant information before and after the region of interest. Even so, much of the surrounding context is lost as it&#039;s not as easily accessible. [Spence, 2006]&lt;br /&gt;
This is known as the [[Focus-plus-Context|&amp;quot;focus+context&amp;quot;]] problem. &lt;br /&gt;
&lt;br /&gt;
== Original concept ==&lt;br /&gt;
[[Image:Bifocal_display_01.gif|frame|right||Bifocal display visualised as a continuous ribbon]]To address this problem, [[Spence, Robert|Spence]] and [[Apperley, Mark|Apperley]] proposed their &#039;&#039;bifocal display&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
A bifocal display can be thought of as a &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; of data that is displayed on three seperate viewports or monitors (see image). The centre viewport is used to display the current region of interest while the left and right viewports are used to display the preceding and succeeding context respectively. The region of interest is displayed in great detail while the context in compressed, so as to allow one to identify objects at a cursory glance.&lt;br /&gt;
&lt;br /&gt;
Most importantly, it should be easily possible to &amp;quot;scroll&amp;quot; backwards and forwards, replacing the current region of interest with content from its surrounding context, thus expanding the newly focused region of interest and relegating the former region of interest to its place in the compressed context. [Spence, 2006]&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
[[Image:Fisheye_grid.gif|frame|left||Scheme of applying a fisheye view]]&lt;br /&gt;
The original concept is limited to visualization problems with one main continuous dimension.&lt;br /&gt;
If we add a second dimension we get the concept of fisheye or magnifying glass (see image).&lt;br /&gt;
Both are applicable only in situations with continuous dimensions.&lt;br /&gt;
This is already reflected in [Apperley et al., 1982]:&lt;br /&gt;
&lt;br /&gt;
Instead of simply compressing the context visually it could prove useful to choose a different representation for the peripheral viewports than is used for the central viewport. &lt;br /&gt;
&lt;br /&gt;
In many situations the context is best displayed by some sort of graph, the most common example being the filesystem tree.&lt;br /&gt;
&lt;br /&gt;
[[Image:Chart timewall3.jpg|frame|right||TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metaphor of continuous ribbon in a commercial application]]&lt;br /&gt;
Depending on how broad the metaphor of bifocal display is understood, one can see all types of applications with some sort of &#039;&#039;navigation&#039;&#039; and &#039;&#039;detail&#039;&#039; pane as applying the visualisation strategy of &#039;&#039;bifocal display&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Following the various techniques are summarized:&lt;br /&gt;
* &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; - &amp;quot;the original&amp;quot; but only applicable for timelines or similar one-dimensional visualisation problems.&lt;br /&gt;
* &#039;&#039;&#039;fisheye view / magnyfing glass&#039;&#039;&#039; - very useful for viewing maps or plans&lt;br /&gt;
* &#039;&#039;&#039;tree + detail&#039;&#039;&#039; - probably the most widespread technique (email client, filesystem browser, etc)&lt;br /&gt;
* &#039;&#039;&#039;graph + detail&#039;&#039;&#039; - eg modeling tools which provide interactive viewports with zoomable views of a graph allowing to simply access the detailed information of its nodes or edges.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
*[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html#Context&lt;br /&gt;
*[Apperley et al., 1982] M.D. Apperley, I. Tzavaras, R. Spence. A bifocal display technique for data presentation. &#039;&#039;Eurographics &#039;82&#039;&#039;, p. 27. Abstract: http://diglib.eg.org/EG/DL/Conf/EG82/papers/EUROGRAPHICS_82pp027-043.pdf.abstract.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Current Applications&#039;&#039;&#039; - bifocal display in practice:&lt;br /&gt;
*[Inxight, 2006] Inxight VizServer - corporate website, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;br /&gt;
*[Brain, 2006] TheBrainEKP: Enterprise Knowledge Platform - corporate website, product section. Accessed at: Oct 30, 2006. http://www.thebrain.com/Overview/default.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11168</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 1 - Bifocal Display</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11168"/>
		<updated>2006-10-30T14:48:01Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Definition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
The goal of &#039;&#039;&#039;bifocal display&#039;&#039;&#039; is to represent the current region of interest in a detailed view, maintaining the context visible in a schematic but recognisable way.  [Apperley et al., 1982]&lt;br /&gt;
&lt;br /&gt;
== Context ==&lt;br /&gt;
The desire to present all the relevant information within its context usually results in an extremely cluttered and confusing display. If only the current region of interest is displayed, one has to arrange for a mechanism to quickly switch to relevant information before and after the region of interest. Even so, much of the surrounding context is lost as it&#039;s not as easily accessible. [Spence, 2006]&lt;br /&gt;
This is known as the [[Focus-plus-Context|&amp;quot;focus+context&amp;quot;]] problem. &lt;br /&gt;
&lt;br /&gt;
== Original concept ==&lt;br /&gt;
[[Image:Bifocal_display_01.gif|frame|right||Bifocal display visualised as a continuous ribbon]]To address this problem, [[Spence, Robert|Spence]] and [[Apperley, Mark|Apperley]] proposed their &#039;&#039;bifocal display&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
A bifocal display can be thought of as a &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; of data that is displayed on three seperate viewports or monitors (see image). The centre viewport is used to display the current region of interest while the left and right viewports are used to display the preceding and succeeding context respectively. The region of interest is displayed in great detail while the context in compressed, so as to allow one to identify objects at a cursory glance.&lt;br /&gt;
&lt;br /&gt;
Most importantly, it should be easily possible to &amp;quot;scroll&amp;quot; backwards and forwards, replacing the current region of interest with content from its surrounding context, thus expanding the newly focused region of interest and relegating the former region of interest to its place in the compressed context. [Spence, 2006]&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
[[Image:Fisheye_grid.gif|frame|left||Scheme of applying a fisheye view]]&lt;br /&gt;
The original concept is limited to visualization problems with one main continuous dimension.&lt;br /&gt;
If we add a second dimension we get the concept of fisheye or magnifying glass (see image).&lt;br /&gt;
Both are applicable only in situations with continuous dimensions.&lt;br /&gt;
This is already reflected in [Apperley et al., 1982]:&lt;br /&gt;
&lt;br /&gt;
Instead of simply compressing the context visually it could prove useful to choose a different representation for the peripheral viewports than is used for the central viewport. &lt;br /&gt;
&lt;br /&gt;
In many situations the context is best displayed by some sort of graph, the most common example being the filesystem tree.&lt;br /&gt;
&lt;br /&gt;
[[Image:Chart timewall3.jpg|frame|right||TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metaphor of continuous ribbon in a commercial application]]&lt;br /&gt;
Depending on how broad the metaphor of bifocal display is understood, one can see all types of applications with some sort of &#039;&#039;navigation&#039;&#039; and &#039;&#039;detail&#039;&#039; pane as applying the visualisation strategy of &#039;&#039;bifocal display&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Following the various techniques are summarized:&lt;br /&gt;
* &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; - &amp;quot;the original&amp;quot; but only applicable for timelines or similar one-dimensional visualisation problems.&lt;br /&gt;
* &#039;&#039;&#039;fisheye view / magnyfing glass&#039;&#039;&#039; - very useful for viewing maps or plans&lt;br /&gt;
* &#039;&#039;&#039;tree + detail&#039;&#039;&#039; - probably the most widespread technique (email client, filesystem browser, etc)&lt;br /&gt;
* &#039;&#039;&#039;graph + detail&#039;&#039;&#039; - eg modeling tools which provide interactive viewports with zoomable views of a graph allowing to simply access the detailed information of its nodes or edges.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
*[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html#Context&lt;br /&gt;
*[Apperley et al., 1982] M.D. Apperley, I. Tzavaras, R. Spence. A bifocal display technique for data presentation. &#039;&#039;Eurographics &#039;82&#039;&#039;, p. 27. Abstract: http://diglib.eg.org/EG/DL/Conf/EG82/papers/EUROGRAPHICS_82pp027-043.pdf.abstract.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Current Applications&#039;&#039;&#039; - bifocal display in practice:&lt;br /&gt;
*[Inxight, 2006] Inxight VizServer - corporate website, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;br /&gt;
*[Brain, 2006] TheBrainEKP: Enterprise Knowledge Platform - corporate website, product section. Accessed at: Oct 30, 2006. http://www.thebrain.com/Overview/default.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11166</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 1 - Bifocal Display</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11166"/>
		<updated>2006-10-30T14:45:04Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
A &#039;&#039;&#039;bifocal display&#039;&#039;&#039; provides a detailed view of the current region of interest while providing a more compressed view of information outside that region of interest.&lt;br /&gt;
&lt;br /&gt;
== Context ==&lt;br /&gt;
The desire to present all the relevant information within its context usually results in an extremely cluttered and confusing display. If only the current region of interest is displayed, one has to arrange for a mechanism to quickly switch to relevant information before and after the region of interest. Even so, much of the surrounding context is lost as it&#039;s not as easily accessible. [Spence, 2006]&lt;br /&gt;
This is known as the [[Focus-plus-Context|&amp;quot;focus+context&amp;quot;]] problem. &lt;br /&gt;
&lt;br /&gt;
== Original concept ==&lt;br /&gt;
[[Image:Bifocal_display_01.gif|frame|right||Bifocal display visualised as a continuous ribbon]]To address this problem, [[Spence, Robert|Spence]] and [[Apperley, Mark|Apperley]] proposed their &#039;&#039;bifocal display&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
A bifocal display can be thought of as a &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; of data that is displayed on three seperate viewports or monitors (see image). The centre viewport is used to display the current region of interest while the left and right viewports are used to display the preceding and succeeding context respectively. The region of interest is displayed in great detail while the context in compressed, so as to allow one to identify objects at a cursory glance.&lt;br /&gt;
&lt;br /&gt;
Most importantly, it should be easily possible to &amp;quot;scroll&amp;quot; backwards and forwards, replacing the current region of interest with content from its surrounding context, thus expanding the newly focused region of interest and relegating the former region of interest to its place in the compressed context. [Spence, 2006]&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
[[Image:Fisheye_grid.gif|frame|left||Scheme of applying a fisheye view]]&lt;br /&gt;
The original concept is limited to visualization problems with one main continuous dimension.&lt;br /&gt;
If we add a second dimension we get the concept of fisheye or magnifying glass (see image).&lt;br /&gt;
Both are applicable only in situations with continuous dimensions.&lt;br /&gt;
This is already reflected in [Apperley et al., 1982]:&lt;br /&gt;
&lt;br /&gt;
Instead of simply compressing the context visually it could prove useful to choose a different representation for the peripheral viewports than is used for the central viewport. &lt;br /&gt;
&lt;br /&gt;
In many situations the context is best displayed by some sort of graph, the most common example being the filesystem tree.&lt;br /&gt;
&lt;br /&gt;
[[Image:Chart timewall3.jpg|frame|right||TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metaphor of continuous ribbon in a commercial application]]&lt;br /&gt;
Depending on how broad the metaphor of bifocal display is understood, one can see all types of applications with some sort of &#039;&#039;navigation&#039;&#039; and &#039;&#039;detail&#039;&#039; pane as applying the visualisation strategy of &#039;&#039;bifocal display&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Following the various techniques are summarized:&lt;br /&gt;
* &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; - &amp;quot;the original&amp;quot; but only applicable for timelines or similar one-dimensional visualisation problems.&lt;br /&gt;
* &#039;&#039;&#039;fisheye view / magnyfing glass&#039;&#039;&#039; - very useful for viewing maps or plans&lt;br /&gt;
* &#039;&#039;&#039;tree + detail&#039;&#039;&#039; - probably the most widespread technique (email client, filesystem browser, etc)&lt;br /&gt;
* &#039;&#039;&#039;graph + detail&#039;&#039;&#039; - eg modeling tools which provide interactive viewports with zoomable views of a graph allowing to simply access the detailed information of its nodes or edges.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
*[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html#Context&lt;br /&gt;
*[Apperley et al., 1982] M.D. Apperley, I. Tzavaras, R. Spence. A bifocal display technique for data presentation. &#039;&#039;Eurographics &#039;82&#039;&#039;, p. 27. Abstract: http://diglib.eg.org/EG/DL/Conf/EG82/papers/EUROGRAPHICS_82pp027-043.pdf.abstract.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Current Applications&#039;&#039;&#039; - bifocal display in practice:&lt;br /&gt;
*[Inxight, 2006] Inxight VizServer - corporate website, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;br /&gt;
*[Brain, 2006] TheBrainEKP: Enterprise Knowledge Platform - corporate website, product section. Accessed at: Oct 30, 2006.&lt;br /&gt;
http://www.thebrain.com/Overview/default.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11164</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 1 - Bifocal Display</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11164"/>
		<updated>2006-10-30T14:43:28Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
A &#039;&#039;&#039;bifocal display&#039;&#039;&#039; provides a detailed view of the current region of interest while providing a more compressed view of information outside that region of interest.&lt;br /&gt;
&lt;br /&gt;
== Context ==&lt;br /&gt;
The desire to present all the relevant information within its context usually results in an extremely cluttered and confusing display. If only the current region of interest is displayed, one has to arrange for a mechanism to quickly switch to relevant information before and after the region of interest. Even so, much of the surrounding context is lost as it&#039;s not as easily accessible. [Spence, 2006]&lt;br /&gt;
This is known as the [[Focus-plus-Context|&amp;quot;focus+context&amp;quot;]] problem. &lt;br /&gt;
&lt;br /&gt;
== Original concept ==&lt;br /&gt;
[[Image:Bifocal_display_01.gif|frame|right||Bifocal display visualised as a continuous ribbon]]To address this problem, [[Spence, Robert|Spence]] and [[Apperley, Mark|Apperley]] proposed their &#039;&#039;bifocal display&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
A bifocal display can be thought of as a &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; of data that is displayed on three seperate viewports or monitors (see image). The centre viewport is used to display the current region of interest while the left and right viewports are used to display the preceding and succeeding context respectively. The region of interest is displayed in great detail while the context in compressed, so as to allow one to identify objects at a cursory glance.&lt;br /&gt;
&lt;br /&gt;
Most importantly, it should be easily possible to &amp;quot;scroll&amp;quot; backwards and forwards, replacing the current region of interest with content from its surrounding context, thus expanding the newly focused region of interest and relegating the former region of interest to its place in the compressed context. [Spence, 2006]&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
[[Image:Fisheye_grid.gif|frame|left||Scheme of applying a fish-eye view]]&lt;br /&gt;
The original concept is limited to visualization problems with one main continuous dimension.&lt;br /&gt;
If we add a second dimension we get the concept of fish-eye or magnifying glass (see image).&lt;br /&gt;
Both are applicable only in situations with continuous dimensions.&lt;br /&gt;
This is already reflected in [Apperley et al., 1982]:&lt;br /&gt;
&lt;br /&gt;
Instead of simply compressing the context visually it could prove useful to choose a different representation for the peripherial viewports than is used for the central viewport. &lt;br /&gt;
&lt;br /&gt;
In many situations the context is best displayed by some sort of graph, the most common example being the filesystem-tree.&lt;br /&gt;
&lt;br /&gt;
[[Image:Chart timewall3.jpg|frame|right||TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metaphor of continuous ribbon in a commercial application]]&lt;br /&gt;
Depending on how broad the metapher of bifocal display is understood, one can see all types of applications with some sort of &#039;&#039;navigation&#039;&#039; and &#039;&#039;detail&#039;&#039; pane as applying the visualisation strategy of &#039;&#039;bifocal display&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Following the various techniques are summarized:&lt;br /&gt;
* &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; - &amp;quot;the original&amp;quot; but only applicable for timelines or similar one-dimensional visualisation problems.&lt;br /&gt;
* &#039;&#039;&#039;fisheye view / magnyfing glass&#039;&#039;&#039; - very useful for viewing maps or plans&lt;br /&gt;
* &#039;&#039;&#039;tree + detail&#039;&#039;&#039; - probably the most widespread technique (email client, filesystem browser, etc)&lt;br /&gt;
* &#039;&#039;&#039;graph + detail&#039;&#039;&#039; - eg modeling tools which provide interactive viewports with zoomable views of a graph allowing to simply access the detailed information of its nodes or edges.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
*[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html#Context&lt;br /&gt;
*[Apperley et al., 1982] M.D. Apperley, I. Tzavaras, R. Spence. A bifocal display technique for data presentation. &#039;&#039;Eurographics &#039;82&#039;&#039;, p. 27. Abstract: http://diglib.eg.org/EG/DL/Conf/EG82/papers/EUROGRAPHICS_82pp027-043.pdf.abstract.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Current Applications&#039;&#039;&#039; - bifocal display in practice:&lt;br /&gt;
*[Inxight, 2006] Inxight VizServer - corporate website, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;br /&gt;
*[Brain, 2006] TheBrainEKP: Enterprise Knowledge Platform - corporate website, product section. Accessed at: Oct 30, 2006.&lt;br /&gt;
http://www.thebrain.com/Overview/default.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11163</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 1 - Bifocal Display</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11163"/>
		<updated>2006-10-30T14:42:04Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
A &#039;&#039;&#039;bifocal display&#039;&#039;&#039; provides a detailed view of the current region of interest while providing a more compressed view of information outside that region of interest.&lt;br /&gt;
&lt;br /&gt;
== Context ==&lt;br /&gt;
The desire to present all the relevant information within its context usually results in an extremely cluttered and confusing display. If only the current region of interest is displayed, one has to arrange for a mechanism to quickly switch to relevant information before and after the region of interest. Even so, much of the surrounding context is lost as it&#039;s not as easily accessible. [Spence, 2006]&lt;br /&gt;
This is known as the [[Focus-plus-Context|&amp;quot;focus+context&amp;quot;]] problem. &lt;br /&gt;
&lt;br /&gt;
== Original concept ==&lt;br /&gt;
[[Image:Bifocal_display_01.gif|frame|right||Bifocal display visualised as a continuous ribbon]]To address this problem, [[Spence, Robert|Spence]] and [[Apperley, Mark|Apperley]] proposed their &#039;&#039;bifocal display&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
A bifocal display can be thought of as a &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; of data that is displayed on three seperate viewports or monitors (see image). The centre viewport is used to display the current region of interest while the left and right viewports are used to display the preceding and succeeding context respectively. The region of interest is displayed in great detail while the context in compressed, so as to allow one to identify objects at a cursory glance.&lt;br /&gt;
&lt;br /&gt;
Most importantly, it should be easily possible to &amp;quot;scroll&amp;quot; backwards and forwards, replacing the current region of interest with content from its surrounding context, thus expanding the newly focused region of interest and relegating the former region of interest to its place in the compressed context. [Spence, 2006]&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
[[Image:Fisheye_grid.gif|frame|left||Scheme of applying a fish-eye view]]&lt;br /&gt;
The original concept is limited to visualization problems with one main continuous dimension.&lt;br /&gt;
If we add a second dimension we get the concept of fish-eye or magnifying glass (see image).&lt;br /&gt;
Both are applicable only in situations with continuous dimensions.&lt;br /&gt;
This is already reflected in [Apperley et al., 1982]:&lt;br /&gt;
&lt;br /&gt;
Instead of simply compressing the context visually it could prove useful to choose a different representation for the peripherial viewports than is used for the central viewport. &lt;br /&gt;
&lt;br /&gt;
In many situations the context is best displayed by some sort of graph, the most common example being the filesystem-tree.&lt;br /&gt;
&lt;br /&gt;
[[Image:Chart timewall3.jpg|frame|right||TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metaphor of continuous ribbon in a commercial application]]&lt;br /&gt;
Depending on how broad the metapher of bifocal display is understood, one can see all types of applications with some sort of &#039;&#039;navigation&#039;&#039; and &#039;&#039;detail&#039;&#039; pane as applying the visualisation strategy of &#039;&#039;bifocal display&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Following the various techniques are summarized:&lt;br /&gt;
* &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; - &amp;quot;the original&amp;quot; but only applicable for timelines or similar one-dimensional visualisation problems.&lt;br /&gt;
* &#039;&#039;&#039;fisheye view / magnyfing glass&#039;&#039;&#039; - very useful for viewing maps or plans&lt;br /&gt;
* &#039;&#039;&#039;tree + detail&#039;&#039;&#039; - probably the most widespread technique (email client, filesystem browser, etc)&lt;br /&gt;
* &#039;&#039;&#039;graph + detail&#039;&#039;&#039; - eg modeling tools which provide interactive viewports with zoomable views of a graph allowing to simply access the detailed information of its nodes or edges.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
*[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html#Context&lt;br /&gt;
*[Apperley et al., 1982] M.D. Apperley, I. Tzavaras, R. Spence. &#039;&#039;A bifocal display technique for data presentation&#039;&#039;. Eurographics &#039;82, p. 27. Abstract: http://diglib.eg.org/EG/DL/Conf/EG82/papers/EUROGRAPHICS_82pp027-043.pdf.abstract.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Current Applications&#039;&#039;&#039; - bifocal display in practice:&lt;br /&gt;
*[Inxight, 2006] Inxight VizServer - corporate website, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;br /&gt;
*[Brain, 2006] TheBrainEKP: Enterprise Knowledge Platform - corporate website, product section. Accessed at: Oct 30, 2006.&lt;br /&gt;
http://www.thebrain.com/Overview/default.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Chart_timewall3.jpg&amp;diff=11161</id>
		<title>File:Chart timewall3.jpg</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Chart_timewall3.jpg&amp;diff=11161"/>
		<updated>2006-10-30T14:40:37Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metaphor of continuous ribbon in a commercial application&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
*[Inxight, 2006] Inxight VizServer - corporate web-site, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Bifocal_display_01.gif&amp;diff=11159</id>
		<title>File:Bifocal display 01.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Bifocal_display_01.gif&amp;diff=11159"/>
		<updated>2006-10-30T14:39:14Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Source */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Bifocal display visualised as a continous ribbon&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html#Context&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Fisheye_grid.gif&amp;diff=11158</id>
		<title>File:Fisheye grid.gif</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Fisheye_grid.gif&amp;diff=11158"/>
		<updated>2006-10-30T14:39:04Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Source */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
scheme of applying the fish-eye-view&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=File:Chart_timewall3.jpg&amp;diff=11157</id>
		<title>File:Chart timewall3.jpg</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=File:Chart_timewall3.jpg&amp;diff=11157"/>
		<updated>2006-10-30T14:38:22Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* Source */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metapher of continuous ribbon in a commercial application&lt;br /&gt;
&lt;br /&gt;
== Copyright status ==&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
*[Inxight, 2006] Inxight VizServer - corporate web-site, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11156</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 1 - Bifocal Display</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11156"/>
		<updated>2006-10-30T14:38:01Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
A &#039;&#039;&#039;bifocal display&#039;&#039;&#039; provides a detailed view of the current region of interest while providing a more compressed view of information outside that region of interest.&lt;br /&gt;
&lt;br /&gt;
== Context ==&lt;br /&gt;
The desire to present all the relevant information within its context usually results in an extremely cluttered and confusing display. If only the current region of interest is displayed, one has to arrange for a mechanism to quickly switch to relevant information before and after the region of interest. Even so, much of the surrounding context is lost as it&#039;s not as easily accessible. [Spence, 2006]&lt;br /&gt;
This is known as the [[Focus-plus-Context|&amp;quot;focus+context&amp;quot;]] problem. &lt;br /&gt;
&lt;br /&gt;
== Original concept ==&lt;br /&gt;
[[Image:Bifocal_display_01.gif|frame|right||Bifocal display visualised as a continuous ribbon]]To address this problem, [[Spence, Robert|Spence]] and [[Apperley, Mark|Apperley]] proposed their &#039;&#039;bifocal display&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
A bifocal display can be thought of as a &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; of data that is displayed on three seperate viewports or monitors (see image). The centre viewport is used to display the current region of interest while the left and right viewports are used to display the preceding and succeeding context respectively. The region of interest is displayed in great detail while the context in compressed, so as to allow one to identify objects at a cursory glance.&lt;br /&gt;
&lt;br /&gt;
Most importantly, it should be easily possible to &amp;quot;scroll&amp;quot; backwards and forwards, replacing the current region of interest with content from its surrounding context, thus expanding the newly focused region of interest and relegating the former region of interest to its place in the compressed context. [Spence, 2006]&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
[[Image:Fisheye_grid.gif|frame|left||Scheme of applying a fish-eye view]]&lt;br /&gt;
The original concept is limited to visualization problems with one main continuous dimension.&lt;br /&gt;
If we add a second dimension we get the concept of fish-eye or magnyfing glass (see image).&lt;br /&gt;
Both are rather applicable only in situations with continuous dimensions.&lt;br /&gt;
This is already reflected in [Apperley et al., 1982]:&lt;br /&gt;
&lt;br /&gt;
Instead of simply compressing the context visually it could prove useful to choose a different representation for the peripherial viewports than is used for the central viewport. &lt;br /&gt;
&lt;br /&gt;
In many situations the context is best displayed by some sort of graph, the most common example being the filesystem-tree.&lt;br /&gt;
&lt;br /&gt;
[[Image:Chart timewall3.jpg|frame|right||TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metapher of continuous ribbon in a commercial application]]&lt;br /&gt;
Depending on how broad the metapher of bifocal display is understood, one can see all types of applications with some sort of &#039;&#039;navigation&#039;&#039; and &#039;&#039;detail&#039;&#039; pane as applying the visualisation strategy of &#039;&#039;bifocal display&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Following the various techniques are summarized:&lt;br /&gt;
* &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; - &amp;quot;the original&amp;quot; but only applicable for time-lines or similar one-dimensional visualisation problems.&lt;br /&gt;
* &#039;&#039;&#039;fisheye view / magnyfing glass&#039;&#039;&#039; - very useful for viewing maps or plans&lt;br /&gt;
* &#039;&#039;&#039;tree + detail&#039;&#039;&#039; - probably the most wide-spread technique (email-client, filesystem-browser, etc)&lt;br /&gt;
* &#039;&#039;&#039;graph + detail&#039;&#039;&#039; - eg modeling tools which provide interactive viewports with zoomable views of a graph allowing to simply access the detailed information of its nodes or edges.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
*[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html#Context&lt;br /&gt;
*[Apperley et al., 1982] M.D. Apperley, I. Tzavaras, R. Spence. &#039;&#039;A bifocal display technique for data presentation&#039;&#039;. Eurographics &#039;82, p. 27. Abstract: http://diglib.eg.org/EG/DL/Conf/EG82/papers/EUROGRAPHICS_82pp027-043.pdf.abstract.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Current Applications&#039;&#039;&#039; - bifocal display in practice:&lt;br /&gt;
*[Inxight, 2006] Inxight VizServer - corporate web-site, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;br /&gt;
*[Brain, 2006] TheBrainEKP: Enterprise Knowledge Platform - corporate web-site, product section. Accessed at: Oct 30, 2006.&lt;br /&gt;
http://www.thebrain.com/Overview/default.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11126</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 1 - Bifocal Display</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11126"/>
		<updated>2006-10-30T12:44:44Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
A &#039;&#039;&#039;bifocal display&#039;&#039;&#039; provides a detailed view of the current region of interest while providing a more compressed view of information outside that region of interest.&lt;br /&gt;
&lt;br /&gt;
== Context ==&lt;br /&gt;
The desire to present all the relevant information within its context usually results in an extremely cluttered and confusing display. If only the current region of interest is displayed, one has to arrange for a mechanism to quickly switch to relevant information before and after the region of interest. Even so, much of the surrounding context is lost as it&#039;s not as easily accessible. [Spence, 2006]&lt;br /&gt;
This is known as the [[Focus-plus-Context|&amp;quot;focus+context&amp;quot;]] problem. &lt;br /&gt;
&lt;br /&gt;
== Original concept ==&lt;br /&gt;
[[Image:Bifocal_display_01.gif|frame|right||Bifocal display visualised as a continuous ribbon]]To address this problem, [[Spence, Robert|Spence]] and [[Apperley, Mark|Apperley]] proposed their &#039;&#039;bifocal display&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
A bifocal display can be thought of as a &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; of data that is displayed on three seperate viewports or monitors (see image). The centre viewport is used to display the current region of interest while the left and right viewports are used to display the preceding and succeeding context respectively. The region of interest is displayed in great detail while the context in compressed, so as to allow one to identify objects at a cursory glance.&lt;br /&gt;
&lt;br /&gt;
Most importantly, it should be easily possible to &amp;quot;scroll&amp;quot; backwards and forwards, replacing the current region of interest with content from its surrounding context, thus expanding the newly focused region of interest and relegating the former region of interest to its place in the compressed context. [Spence, 2006]&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
[[Image:Fisheye_grid.gif|frame|left||Scheme of applying a fish-eye view]]&lt;br /&gt;
The original concept is limited to visualization problems with one main continuous dimension.&lt;br /&gt;
If we add a second dimension we get the concept of fish-eye or magnyfing glass (see image).&lt;br /&gt;
Both are rather applicable only in situations with continuous dimensions.&lt;br /&gt;
This is already reflected in [Apperley et al., 1982]:&lt;br /&gt;
&lt;br /&gt;
Instead of simply compressing the context visually it could prove useful to choose a different representation for the peripherial viewports than is used for the central viewport. &lt;br /&gt;
&lt;br /&gt;
In many situations the context is best displayed by some sort of graph, the most common example being the filesystem-tree.&lt;br /&gt;
&lt;br /&gt;
[[Image:Chart timewall3.jpg|frame|right||TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metapher of continuous ribbon in a commercial application]]&lt;br /&gt;
Depending on how broad the metapher of bifocal display is understood, one can see all types of applications with some sort of &#039;&#039;navigation&#039;&#039; and &#039;&#039;detail&#039;&#039; pane as applying the visualisation strategy of &#039;&#039;bifocal display&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Following the various techniques are summarized:&lt;br /&gt;
* &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; - &amp;quot;the original&amp;quot; but only applicable for time-lines or similar one-dimensional visualisation problems.&lt;br /&gt;
* &#039;&#039;&#039;fisheye view / magnyfing glass&#039;&#039;&#039; - very useful for viewing maps or plans&lt;br /&gt;
* &#039;&#039;&#039;tree + detail&#039;&#039;&#039; - probably the most wide-spread technique (email-client, filesystem-browser, etc)&lt;br /&gt;
* &#039;&#039;&#039;graph + detail&#039;&#039;&#039; - eg modeling tools which provide interactive viewports with zoomable views of a graph allowing to simply access the detailed information of its nodes or edges.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
*[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html#Context&lt;br /&gt;
*[Apperley et al., 1982] M.D. Apperley, I. Tzavaras, R. Spence. &#039;&#039;A bifocal display technique for data presentation&#039;&#039;. Eurographics &#039;82, p. 27. Abstract: http://diglib.eg.org/EG/DL/Conf/EG82/papers/EUROGRAPHICS_82pp027-043.pdf.abstract.pdf&lt;br /&gt;
Current Applications - bifocal display in practice/business:&lt;br /&gt;
*[InxightVizServer] Inxight VizServer - corporate web-site, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;br /&gt;
*[BrainEKP] TheBrainEKP: Enterprise Knowledge Platform - corporate web-site, product section. Accessed at: Oct 30, 2006.&lt;br /&gt;
http://www.thebrain.com/Overview/default.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11123</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 1 - Bifocal Display</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11123"/>
		<updated>2006-10-30T12:43:31Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
A &#039;&#039;&#039;bifocal display&#039;&#039;&#039; provides a detailed view of the current region of interest while providing a more compressed view of information outside that region of interest.&lt;br /&gt;
&lt;br /&gt;
== Context ==&lt;br /&gt;
The desire to present all the relevant information within its context usually results in an extremely cluttered and confusing display. If only the current region of interest is displayed, one has to arrange for a mechanism to quickly switch to relevant information before and after the region of interest. Even so, much of the surrounding context is lost as it&#039;s not as easily accessible. [Spence, 2006]&lt;br /&gt;
This is known as the [[Focus-plus-Context|&amp;quot;focus+context&amp;quot;]] problem. &lt;br /&gt;
&lt;br /&gt;
== Original concept ==&lt;br /&gt;
[[Image:Bifocal_display_01.gif|frame|right||Bifocal display visualised as a continuous ribbon]]To address this problem, [[Spence, Robert|Spence]] and [[Apperley, Mark|Apperley]] proposed their &#039;&#039;bifocal display&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
A bifocal display can be thought of as a &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; of data that is displayed on three seperate viewports or monitors (see image). The centre viewport is used to display the current region of interest while the left and right viewports are used to display the preceding and succeeding context respectively. The region of interest is displayed in great detail while the context in compressed, so as to allow one to identify objects at a cursory glance.&lt;br /&gt;
&lt;br /&gt;
Most importantly, it should be easily possible to &amp;quot;scroll&amp;quot; backwards and forwards, replacing the current region of interest with content from its surrounding context, thus expanding the newly focused region of interest and relegating the former region of interest to its place in the compressed context. [Spence, 2006]&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
[[Image:Fisheye_grid.gif|frame|left||Scheme of applying a fish-eye view]]&lt;br /&gt;
The original concept is limited to visualization problems with one main continuous dimension.&lt;br /&gt;
If we add a second dimension we get the concept of fish-eye or magnyfing glass (see image).&lt;br /&gt;
Both are rather applicable only in situations with continuous dimensions.&lt;br /&gt;
This is already reflected in [Apperley et al., 1982]:&lt;br /&gt;
&lt;br /&gt;
Instead of simply compressing the context visually it could prove useful to choose a different representation for the peripherial viewports than is used for the central viewport. &lt;br /&gt;
&lt;br /&gt;
[[Image:Chart timewall3.jpg|frame|right||TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metapher of continuous ribbon in a commercial application]]&lt;br /&gt;
In many situations the context is best displayed by some sort of graph, the most common example being the filesystem-tree.&lt;br /&gt;
&lt;br /&gt;
Depending on how broad the metapher of bifocal display is understood, one can see all types of applications with some sort of &#039;&#039;navigation&#039;&#039; and &#039;&#039;detail&#039;&#039; pane as applying the visualisation strategy of &#039;&#039;bifocal display&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Following the various techniques are summarized:&lt;br /&gt;
* &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; - &amp;quot;the original&amp;quot; but only applicable for time-lines or similar one-dimensional visualisation problems.&lt;br /&gt;
* &#039;&#039;&#039;fisheye view / magnyfing glass&#039;&#039;&#039; - very useful for viewing maps or plans&lt;br /&gt;
* &#039;&#039;&#039;tree + detail&#039;&#039;&#039; - probably the most wide-spread technique (email-client, filesystem-browser, etc)&lt;br /&gt;
* &#039;&#039;&#039;graph + detail&#039;&#039;&#039; - eg modeling tools which provide interactive viewports with zoomable views of a graph allowing to simply access the detailed information of its nodes or edges.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
*[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html#Context&lt;br /&gt;
*[Apperley et al., 1982] M.D. Apperley, I. Tzavaras, R. Spence. &#039;&#039;A bifocal display technique for data presentation&#039;&#039;. Eurographics &#039;82, p. 27. Abstract: http://diglib.eg.org/EG/DL/Conf/EG82/papers/EUROGRAPHICS_82pp027-043.pdf.abstract.pdf&lt;br /&gt;
Current Applications - bifocal display in practice/business:&lt;br /&gt;
*[InxightVizServer] Inxight VizServer - corporate web-site, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;br /&gt;
*[BrainEKP] TheBrainEKP: Enterprise Knowledge Platform - corporate web-site, product section. Accessed at: Oct 30, 2006.&lt;br /&gt;
http://www.thebrain.com/Overview/default.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
	<entry>
		<id>https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11122</id>
		<title>Teaching:TUW - UE InfoVis WS 2006/07 - Gruppe 08 - Aufgabe 1 - Bifocal Display</title>
		<link rel="alternate" type="text/html" href="https://infovis-wiki.net/w/index.php?title=Teaching:TUW_-_UE_InfoVis_WS_2006/07_-_Gruppe_08_-_Aufgabe_1_-_Bifocal_Display&amp;diff=11122"/>
		<updated>2006-10-30T12:41:23Z</updated>

		<summary type="html">&lt;p&gt;UE-InfoVis0607 0005416: added  Image:Fisheye_grid.gif&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
A &#039;&#039;&#039;bifocal display&#039;&#039;&#039; provides a detailed view of the current region of interest while providing a more compressed view of information outside that region of interest.&lt;br /&gt;
&lt;br /&gt;
== Context ==&lt;br /&gt;
The desire to present all the relevant information within its context usually results in an extremely cluttered and confusing display. If only the current region of interest is displayed, one has to arrange for a mechanism to quickly switch to relevant information before and after the region of interest. Even so, much of the surrounding context is lost as it&#039;s not as easily accessible. [Spence, 2006]&lt;br /&gt;
This is known as the [[Focus-plus-Context|&amp;quot;focus+context&amp;quot;]] problem. &lt;br /&gt;
&lt;br /&gt;
== Original concept ==&lt;br /&gt;
[[Image:Bifocal_display_01.gif|frame|right||Bifocal display visualised as a continuous ribbon]]To address this problem, [[Spence, Robert|Spence]] and [[Apperley, Mark|Apperley]] proposed their &#039;&#039;bifocal display&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
A bifocal display can be thought of as a &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; of data that is displayed on three seperate viewports or monitors (see image). The centre viewport is used to display the current region of interest while the left and right viewports are used to display the preceding and succeeding context respectively. The region of interest is displayed in great detail while the context in compressed, so as to allow one to identify objects at a cursory glance.&lt;br /&gt;
&lt;br /&gt;
Most importantly, it should be easily possible to &amp;quot;scroll&amp;quot; backwards and forwards, replacing the current region of interest with content from its surrounding context, thus expanding the newly focused region of interest and relegating the former region of interest to its place in the compressed context. [Spence, 2006]&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
[[Image:Fisheye_grid.gif|frame|right||Scheme of applying a fish-eye view]]&lt;br /&gt;
The original concept is limited to visualization problems with one main continuous dimension.&lt;br /&gt;
If we add a second dimension we get the concept of fish-eye or magnyfing glass (see image).&lt;br /&gt;
Both are rather applicable only in situations with continuous dimensions.&lt;br /&gt;
This is already reflected in [Apperley et al., 1982]:&lt;br /&gt;
&lt;br /&gt;
Instead of simply compressing the context visually it could prove useful to choose a different representation for the peripherial viewports than is used for the central viewport. &lt;br /&gt;
&lt;br /&gt;
In many situations the context is best displayed by some sort of graph, the most common example being the filesystem-tree.&lt;br /&gt;
&lt;br /&gt;
Depending on how broad the metapher of bifocal display is understood, one can see all types of applications with some sort of &#039;&#039;navigation&#039;&#039; and &#039;&#039;detail&#039;&#039; pane as applying the visualisation strategy of &#039;&#039;bifocal display&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Following the various techniques are summarized:&lt;br /&gt;
* &#039;&#039;&#039;continuous ribbon&#039;&#039;&#039; - &amp;quot;the original&amp;quot; but only applicable for time-lines or similar one-dimensional visualisation problems.&lt;br /&gt;
* &#039;&#039;&#039;fisheye view / magnyfing glass&#039;&#039;&#039; - very useful for viewing maps or plans&lt;br /&gt;
* &#039;&#039;&#039;tree + detail&#039;&#039;&#039; - probably the most wide-spread technique (email-client, filesystem-browser, etc)&lt;br /&gt;
* &#039;&#039;&#039;graph + detail&#039;&#039;&#039; - eg modeling tools which provide interactive viewports with zoomable views of a graph allowing to simply access the detailed information of its nodes or edges.&lt;br /&gt;
&lt;br /&gt;
=== Current Examples ===&lt;br /&gt;
[[Image:Chart timewall3.jpg|frame||TimeWall(TM) by Inxight Software, Inc.(TM) - Employment of the metapher of continuous ribbon in a commercial application]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
*[Spence, 2006] Bob Spence, The Acquisition of Insight. Accessed at: Oct 29, 2006, http://www.ee.ic.ac.uk/research/information/www/Bobs.html#Context&lt;br /&gt;
*[Apperley et al., 1982] M.D. Apperley, I. Tzavaras, R. Spence. &#039;&#039;A bifocal display technique for data presentation&#039;&#039;. Eurographics &#039;82, p. 27. Abstract: http://diglib.eg.org/EG/DL/Conf/EG82/papers/EUROGRAPHICS_82pp027-043.pdf.abstract.pdf&lt;br /&gt;
Current Applications - bifocal display in practice/business:&lt;br /&gt;
*[InxightVizServer] Inxight VizServer - corporate web-site, product section. Accessed at: Oct 30, 2006. http://www.inxight.com/products/vizserver/&lt;br /&gt;
*[BrainEKP] TheBrainEKP: Enterprise Knowledge Platform - corporate web-site, product section. Accessed at: Oct 30, 2006.&lt;br /&gt;
http://www.thebrain.com/Overview/default.html&lt;/div&gt;</summary>
		<author><name>UE-InfoVis0607 0005416</name></author>
	</entry>
</feed>